WP_Comments_List_Table::no_items
Displays a message when no comments are found.
Method of the class: WP_Comments_List_Table{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Comments_List_Table = new WP_Comments_List_Table(); $WP_Comments_List_Table->no_items();
Notes
- Global. String.
$comment_statusThe current comment status filter.
WP_Comments_List_Table::no_items() WP Comments List Table::no items code WP 7.0
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.' );
}
}