wpseek.com
A WordPress-centric search engine for devs and theme authors



user_can_edit_post_comments › WordPress Function

Since1.5.0
Deprecated2.0.0
user_can_edit_post_comments ( $user_id, $post_id, $blog_id = 1 )
Parameters: (3)
  • (int) $user_id
    Required: Yes
  • (int) $post_id
    Required: Yes
  • (int) $blog_id Not Used
    Required: No
    Default: 1
See:
Returns:
  • (bool) returns true if $user_id can edit $post_id's comments
Defined at:
Codex:

Whether user can delete a post.



Source

function user_can_edit_post_comments($user_id, $post_id, $blog_id = 1) {
	_deprecated_function( __FUNCTION__, '2.0.0', 'current_user_can()' );

	// Right now if one can edit a post, one can edit comments made on it.
	return user_can_edit_post($user_id, $post_id, $blog_id);
}