如何在管理菜单搜索中显示空类别

时间:2018-05-01 作者:gaurav sharma

enter image description here

enter image description here

这是我的截图,请指导我如何在管理菜单中搜索空类别。

1 个回复
SO网友:gaurav sharma

在管理菜单搜索中显示空类别

//back
add_filter( \'get_terms_args\', \'wpd_show_empty_terms_in_quick_search\', 10, 2 );

function wpd_show_empty_terms_in_quick_search( $args, $taxonomies ){
    $args[\'hide_empty\'] = false;
    return $args;
}

结束

相关推荐

custom css for admin only

我需要为管理自定义CSS。所以,若用户并没有登录,或者除了管理员之外,其他任何人都有一个CSS,对于管理员来说,只有不同的CSS。我在函数中尝试了此代码。php:function wpa66834_role_admin_body_class( $classes ) { global $current_user; foreach( $current_user->roles as $role ) $classes .= \' role-\' . $