wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



user_can_delete_post_comments › WordPress Function

Da1.5.0
Deprecato2.0.0
user_can_delete_post_comments ( $user_id, $post_id, $blog_id = 1 )
Parametri: (3)
  • (int) $user_id
    Richiesto:
  • (int) $post_id
    Richiesto:
  • (int) $blog_id Not Used
    Richiesto: No
    Default: 1
Vedi:
Ritorna:
  • (bool) returns true if $user_id can delete $post_id's comments
Definito a:
Codex:

Whether user can delete a post.



Sorgenti

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