移除、隐藏、删除Wordpres一些小工具和功能

Wordpress 有些功能不适用定制站(客户可能会乱点到),所以需要隐藏掉,比如顶部工具栏。

  1. 移除顶部工具栏“新建”按钮
function disable_new_content() {  
	global $wp_admin_bar;  
	$wp_admin_bar->remove_menu('new-content');  
}  
add_action( 'wp_before_admin_bar_render', 'disable_new_content' );

2.移除顶部工具栏上的评论提示

function remove_comment_bubble() {  
	global $wp_admin_bar;  
	$wp_admin_bar->remove_menu('comments');  
}  
add_action( 'wp_before_admin_bar_render', 'remove_comment_bubble' );

3.隐藏显示选项和帮助

function remove_screen_options(){ return false;}
add_filter('screen_options_show_screen', 'remove_screen_options');
add_filter( 'contextual_help', 'wpse50723_remove_help', 999, 3 );
function wpse50723_remove_help($old_help, $screen_id, $screen){
	$screen->remove_help_tabs();
	return $old_help;
}

等等,以上很多功能可以选择加上。