隐藏后,从URL显示WordPress菜单页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏后,从URL显示WordPress菜单页面相关的知识,希望对你有一定的参考价值。

我正在使用以下代码隐藏用户帐户中的菜单;

function hide_menu_from_user () {
    if ( !current_user_can( 'administrator' ) ) {
        remove_menu_page( 'edit-comments.php' ); 
        remove_menu_page( 'wpcf7' ); 
        remove_menu_page( 'tools.php' ); 
        remove_menu_page( 'vc-welcome' ); 
    }   
}
add_action( 'admin_menu', 'hide_menu_from_user', 999 );

现在,这些菜单没有显示,但如果你使用URL并粘贴它,那么页面就会出现:

如果我使用此URL,我可以看到联系表单插件,但我将其隐藏在用户帐户仪表板菜单中,对吧?

呜呜呜.my site.com/我怕-admin/admin.PHP?怕个=物品存放7

我该如何解决?上面的代码有什么问题吗?

答案

请尝试以下代码: -

function hide_menu_from_user () {
    if ( !current_user_can( "administrator") ) {
      remove_admin_url_access( "edit-comments.php" );
      remove_admin_url_access( "wpcf7" );
      remove_admin_url_access( "tools.php" );
      remove_admin_url_access( "vc-welcome" );
    }   
}
add_action( "admin_menu", "hide_menu_from_user", 999 );

if(!function_exists('remove_admin_url_access') ) {
    function remove_admin_url_access($menu_to_hide){
        global $pagenow;
        global $parent_file;

        remove_menu_page( $menu_to_hide );

        if($menu_to_hide == $pagenow || $menu_to_hide == $parent_file  ) {
            do_action( "admin_page_access_denied" );
           wp_die( __( "Sorry, you are not allowed to access this page." ), 403 );
        }
    }
}

以上是关于隐藏后,从URL显示WordPress菜单页面的主要内容,如果未能解决你的问题,请参考以下文章

查看 wordpress 版本以及如何隐藏版本号

根据无需重新加载页面加载的 URL 隐藏/显示 div

Wordpress 使用相同的 URL 来显示不同的内容,例如季节性网站

在 WordPress 上登录/注销时隐藏/显示菜单

在Wordpress按钮中显示/隐藏子菜单调整大小

仅在WordPress中,菜单不会显示在移动主页上