Warning: This function has been deprecated. Use current_user_can() instead.

user_can_edit_post_comments( int $user_id, int $post_id, int $blog_id = 1 ): bool

Whether user can delete a post.


Description

Top ↑

See also


Top ↑

Parameters

$user_id int Required
$post_id int Required
$blog_id int Optional
Not Used

Default: 1


Top ↑

Return

bool returns true if $user_id can edit $post_id's comments


Top ↑

Source

File: wp-includes/deprecated.php. View all references

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);
}


Top ↑

Changelog

Changelog
Version Description
2.0.0 Use current_user_can()
1.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.