有人知道如何从前台删除管理导航链接吗?我已经构建了一个自定义主题,当我登录到WordPress时,WordPress会在某个地方添加管理导航栏。
发布于 2011-05-02 09:03:04
管理员栏?进入Users > Your Profile > Show Admin Bar。在这里你可以在你的主题中禁用它。如果您想完全禁用(删除)它,使用各种插件之一,like this。
发布于 2011-09-02 16:53:32
或者,您也可以在functions.php中默认删除它。
/* Disable the Admin Bar. */
add_filter( 'show_admin_bar', '__return_false' );
<?php function yoast_hide_admin_bar_settings() { ?>
<style type="text/css">
.show-admin-bar {
display: none;
}
</style>
<?php }
function yoast_disable_admin_bar() {
add_filter( 'show_admin_bar', '__return_false' );
add_action( 'admin_print_scripts-profile.php',
'yoast_hide_admin_bar_settings' );
}
add_action( 'init', 'yoast_disable_admin_bar' , 9 );感谢Yoast (http://yoast.com/disable-wp-admin-bar/)
发布于 2012-01-19 08:58:39
在functions.php中只有这一点对我来说是有效的。
// Remove Admin Bar Front End
add_filter('show_admin_bar', '__return_false');https://stackoverflow.com/questions/5852592
复制相似问题