user_can_delete_post() WP 1.5.0
Deprecated from version 2.0.0. It is no longer supported and can be removed in future releases. Use current_user_can() instead.╳
Whether user can delete a post.
No Hooks.
Return
true|false
. Null. Nothing.
Usage
user_can_delete_post( $user_id, $post_id, $blog_id );
- $user_id(int) (required)
- -
- $post_id(int) (required)
- -
- $blog_id(int)
- Not Used
Notes
- See: current_user_can()
Changelog
Since 1.5.0 | Introduced. | |
Deprecated Since 2.0.0 | Use current_user_can() |
Code of user_can_delete_post() user can delete post WP 5.7
function user_can_delete_post($user_id, $post_id, $blog_id = 1) {
_deprecated_function( __FUNCTION__, '2.0.0', 'current_user_can()' );
// Right now if one can edit, one can delete.
return user_can_edit_post($user_id, $post_id, $blog_id);
}