Always show term search box. See #15857
git-svn-id: http://svn.automattic.com/wordpress/trunk@17026 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e729294124
commit
6bc5c659ce
|
@ -72,6 +72,11 @@ class WP_Terms_List_Table extends WP_List_Table {
|
||||||
) );
|
) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function has_items() {
|
||||||
|
// todo: populate $this->items in prepare_items()
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
function get_bulk_actions() {
|
function get_bulk_actions() {
|
||||||
$actions = array();
|
$actions = array();
|
||||||
$actions['delete'] = __( 'Delete' );
|
$actions['delete'] = __( 'Delete' );
|
||||||
|
|
Loading…
Reference in New Issue