WP_REST_Comments_Controller::check_edit_permission( WP_Comment $comment ): bool

Checks if a comment can be edited or deleted.


Parameters

$comment WP_Comment Required
Comment object.

Top ↑

Return

bool Whether the comment can be edited or deleted.


Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php. View all references

protected function check_edit_permission( $comment ) {
	if ( 0 === (int) get_current_user_id() ) {
		return false;
	}

	if ( current_user_can( 'moderate_comments' ) ) {
		return true;
	}

	return current_user_can( 'edit_comment', $comment->comment_ID );
}


Top ↑

Changelog

Changelog
Version Description
4.7.0 Introduced.

Top ↑

User Contributed Notes

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