This function has been deprecated. Use current_user_can() instead.
user_can_delete_post_comments( int $user_id, int $post_id, int $blog_id = 1 )
Whether user can delete a post.
Description
See also
Parameters
- $user_id
-
(Required)
- $post_id
-
(Required)
- $blog_id
-
(Optional) Not Used
Default value: 1
Return
(bool) returns true if $user_id can delete $post_id's comments
Source
File: wp-includes/deprecated.php
function user_can_delete_post_comments($user_id, $post_id, $blog_id = 1) {
_deprecated_function( __FUNCTION__, 'WP-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);
}
Changelog
Version | Description |
---|---|
2.0.0 | Use current_user_can() |
1.5.0 | Introduced. This function has been deprecated. Use current_user_can() instead. |