去掉logo或者左侧栏的菜单,防止被改掉。 在使用模板下的functions.PHP下修改 <div class="msgborder" id="phpcode2"> function my_edit_toolbar($wp_toolbar) { $wp_toolbar->remove_node('wp-logo'); //去掉wordpress logo $wp_toolbar->remove_node('site-name'); //去掉网站名称 $wp_toolbar->remove_node('updates'); //去掉更新提醒 $wp_toolbar->remove_node('comments'); //去掉评论提醒 $wp_toolbar->remove_node('new-content'); //去掉新建文件 $wp_toolbar->remove_node('top-secondary'); //用户信息 } add_action('admin_bar_menu','my_edit_toolbar',999);
原文链接:https://www.f2er.com/wordpress/15291.html