WP_Comments_List_Table::no_items()
Method of the class: WP_Comments_List_Table{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WP_Comments_List_Table = new WP_Comments_List_Table(); $WP_Comments_List_Table->no_items();
Notes
- Global. String. $comment_status
WP_Comments_List_Table::no_items() WP Comments List Table::no items code WP 6.8
public function no_items() { global $comment_status; if ( 'moderated' === $comment_status ) { _e( 'No comments awaiting moderation.' ); } elseif ( 'trash' === $comment_status ) { _e( 'No comments found in Trash.' ); } else { _e( 'No comments found.' ); } }