移除WordPress后台右上角帮助

WordPress后台有个帮助按钮,其实没有多大用处,可以移除。将下面代码放到 functions.php 中。

移除WordPress后台右上角帮助
移除WordPress后台右上角帮助
add_action('in_admin_header', function(){
	global $current_screen;
	$current_screen->remove_help_tabs();
});

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注