在NAV-menu.php上禁用最新内容并查看所有(选项卡)(&V

时间:2017-11-12 作者:Samuel

我正在寻找一种方法来禁用最新的&;查看导航菜单上的所有(选项卡)。php(图片上为红色)。

我只想有我的网页和帖子的搜索栏。

谢谢enter image description here

更新时间:

这就是我现在所拥有的:

enter image description here

这就是我想要的:

enter image description here

1 个回复
最合适的回答,由SO网友:mysticalghoul 整理而成

您可以在函数中专门为管理面板引入一个js文件来执行此操作。php:

//Admin JS
add_action(\'admin_init\', \'custom_admin_js\');
function custom_admin_js() {
    wp_register_script( \'admin-js\', get_stylesheet_directory_uri() . \'/js/admin.js\' );
    wp_enqueue_script( \'admin-js\' );
}
在管理中。js文件:

jQuery(document).ready(function($) {
    $(\'*[data-type="tabs-panel-posttype-page-most-recent"]\').fadeOut();
    $(\'*[data-type="page-all"]\').fadeOut();
    $(\'*[data-type="tabs-panel-posttype-page-search"]\').trigger("click");
}); 

结束