Definition:
function user_can_edit_post($user_id, $post_id, $blog_id = 1) {}
Parameters
- int $user_id
- int $post_id
- int $blog_id: Not Used
Source code
function user_can_edit_post($user_id, $post_id, $blog_id = 1) {
_deprecated_function( __FUNCTION__, '2.0', 'current_user_can()' );
$author_data = get_userdata($user_id);
$post = get_post($post_id);
$post_author_data = get_userdata($post->post_author);
if ( (($user_id == $post_author_data->ID) && !($post->post_status == 'publish' && $author_data->user_level < 2))
|| ($author_data->user_level > $post_author_data->user_level)
|| ($author_data->user_level >= 10) ) {
return true;
} else {
return false;
}
}
3287

February 12, 2011 


user_can_edit_post_comments
Definition:
function user_can_edit_post_comments($user_id, $post_id, $blog_id = 1) {}
Parameters
Return values
returns:returns true if $user_id can edit $post_id’s comments
Source code
function user_can_edit_post_comments($user_id, $post_id, $blog_id = 1) { _deprecated_function( __FUNCTION__, '2.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); }3289