摘要:在wordpress程序的使用中,用户会因为不同需求来改变wp后台的使用选项设置;下面就来给大家介绍下屏蔽和优化隐藏wp…
在wordpress程序的使用中,用户会因为不同需求来改变wp后台的使用选项设置;下面就来给大家介绍下屏蔽和优化隐藏wp功能的一些简单的函数屏蔽优化代码方法;操作起来都很简单,大都是代码的辅助粘贴,非常合适新手操作
像企业站大都不需要小工具功能,又或是游客体验站,不需要外观的主题功能。和代码编辑功能。都可以通过函数主题代码的添加进行隐藏和优化调整。有兴趣的站长可以体验一下代码带来的神奇效果。
屏蔽ordPress后台“显示选项”和“帮助”选项卡
操作过程很简单,我们直接在当前主题的functions.php这个文件中加入以下代码即可,内容如下:
1
2
3
4
5
6
7
|
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;
}
|
屏蔽后台更新模块
这个更新功能,比如有些朋友对wordpress的源文件修改较多的话,那么建议您直接屏蔽更新模块,当然,安全起见,还是使用最新版本的WP好,其它的插件也是一样,如确实需要屏蔽更新模块,在当前主题的functions.php这个文件中加入以下代码:
1
2
3
4
|
function wp_hide_nag() {
remove_action( ‘admin_notices’, ‘update_nag’, 3 );
}
add_action(‘admin_menu’,‘wp_hide_nag’);
|
屏蔽后台左上LOGO
这个确实没有多少意义,流量有限制的朋友,可以试试,依然是在当前主题的functions.php这个文件中加入以下代码:
1
2
3
4
5
6
|
function annointed_admin_bar_remove() {
global $wp_admin_bar;
/* Remove their stuff */
$wp_admin_bar->remove_menu(‘wp-logo’);
}
add_action(‘wp_before_admin_bar_render’, ‘annointed_admin_bar_remove’, 0);
|
屏蔽后台页脚版本信息
在当前主题的functions.php这个文件中加入以下代码:
1
2
3
4
|
function change_footer_admin () {return ”;}
add_filter(‘admin_footer_text’, ‘change_footer_admin’, 9999);
function change_footer_version() {return ”;}
add_filter( ‘update_footer’, ‘change_footer_version’, 9999);
|
屏蔽左侧菜单
这个功能慎用,想试试的可以在当前主题的functions.php这个文件中加入以下代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
function remove_menus() {
global $menu;
$restricted = array(
__(‘Dashboard’),
__(‘Posts’),
__(‘Media’),
__(‘Links’),
__(‘Pages’),
__(‘Appearance’),
__(‘Tools’),
__(‘Users’),
__(‘Settings’),
__(‘Comments’),
__(‘Plugins’)
);
end ($menu);
while (prev($menu)){
$value = explode(‘ ‘,$menu[key($menu)][0]);
if(strpos($value[0], ‘<‘) === FALSE) {
if(in_array($value[0] != NULL ? $value[0]:“” , $restricted)){
unset($menu[key($menu)]);
}
}else {
$value2 = explode(‘<‘, $value[0]);
if(in_array($value2[0] != NULL ? $value2[0]:“” , $restricted)){
unset($menu[key($menu)]);
}
}
}
}
if (is_admin()){
// 屏蔽左侧菜单
add_action(‘admin_menu’, ‘remove_menus’);
}
|
删除子菜单
这一个部落目前正在使用中,当然是其中的一个,那就是隐私,在当前主题的functions.php这个文件中加入以下代码:
1
2
3
4
5
6
7
8
9
10
|
function remove_submenu() {
// 删除”设置”下面的子菜单”隐私”
remove_submenu_page(‘options-general.php’, ‘options-privacy.php’);
// 删除”外观”下面的子菜单”编辑”
remove_submenu_page(‘themes.php’, ‘theme-editor.php’);
}
if (is_admin()){
//删除子菜单
add_action(‘admin_init’,‘remove_submenu’);
}
|
屏蔽后台仪表盘无用模块
这一项部落目前也有部分在使用,在当前主题的functions.php这个文件中加入以下代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
function example_remove_dashboard_widgets() {
// Globalize the metaboxes array, this holds all the widgets for wp-admin
global $wp_meta_boxes;
// 以下这一行代码将删除 “快速发布” 模块
unset($wp_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_quick_press’]);
// 以下这一行代码将删除 “引入链接” 模块
unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_incoming_links’]);
// 以下这一行代码将删除 “插件” 模块
unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_plugins’]);
// 以下这一行代码将删除 “近期评论” 模块
unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_recent_comments’]);
// 以下这一行代码将删除 “近期草稿” 模块
unset($wp_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_recent_drafts’]);
// 以下这一行代码将删除 “WordPress 开发日志” 模块
unset($wp_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_primary’]);
// 以下这一行代码将删除 “其它 WordPress 新闻” 模块
unset($wp_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_secondary’]);
// 以下这一行代码将删除 “概况” 模块
unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_right_now’]);
}
add_action(‘wp_dashboard_setup’, ‘example_remove_dashboard_widgets’ );
|
来源:http://www.wazhuti.com/382.html