2020-04-19 / 4714阅
//隐藏工具栏 function annointed_admin_bar_remove() { global $wp_admin_bar; //var_dump($wp_admin_bar); $wp_admin_bar->remove_menu('top-secondary'); $wp_admin_bar->remove_menu('updates'); $wp_admin_bar->remove_menu('wp-logo'); $wp_admin_bar->remove_menu('comments'); } add_action('wp_before_admin_bar_render', 'annointed_admin_bar_remove', 0);
你可以根据打印$wp_admin_bar的内容,选择性的删除LOGO\更新、用户信息等所有内容。
//隐藏帮助 add_filter( 'contextual_help', 'youranzixue_hide_help', 999, 3 ); function youranzixue_hide_help($old_help, $screen_id, $screen){ $screen->remove_help_tabs(); return $old_help; }
//隐藏显示选项 function remove_screen_options($value){ return false; } add_filter('screen_options_show_screen', 'remove_screen_options');
function footerText () { return '<a href="htttps://youranzixue.cn">爱怎么写怎么写</a>'; } add_filter('admin_footer_text', 'footerText', 9999); add_filter('update_footer', 'right_admin_footer_text', 11); function right_admin_footer_text() { return '5.9'; }
add_filter('show_admin_bar', 'hide_admin_bar'); function hide_admin_bar($flag) { return false; }
阅读文章或者观看视频过程中有任何问题,请下方留言或者联系我Q248758228