WP_Comments_List_Table::no_items()publicWP 1.0

Метод класса: WP_Comments_List_Table{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Comments_List_Table = new WP_Comments_List_Table();
$WP_Comments_List_Table->no_items();

Заметки

  • Global. Строка. $comment_status

Код WP_Comments_List_Table::no_items() WP 6.5.2

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