user_can_delete_post_comments()
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
. returns true if $user_id can delete $post_id's comments
Usage
user_can_delete_post_comments( $user_id, $post_id, $blog_id );
- $user_id(int) (required)
- -
- $post_id(int) (required)
- -
- $blog_id(int)
- Not Used
Default: 1
Notes
- See: current_user_can()
Changelog
Since 1.5.0 | Introduced. |
Deprecated since 2.0.0 | Use current_user_can() |
user_can_delete_post_comments() user can delete post comments code WP 6.7.1
function user_can_delete_post_comments($user_id, $post_id, $blog_id = 1) { _deprecated_function( __FUNCTION__, '2.0.0', 'current_user_can()' ); // Right now if one can edit comments, one can delete comments. return user_can_edit_post_comments($user_id, $post_id, $blog_id); }