GC_Comments_List_Table::no_items()

最后更新于:2021-11-26 22:35:10

GC_Comments_List_Table::no_items()

源文件

文件: gc-admin/includes/class-gc-comments-list-table.php

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