WordPress后台有个帮助按钮,其实没有多大用处,可以移除。将下面代码放到 functions.php 中。
add_action('in_admin_header', function(){ global $current_screen; $current_screen->remove_help_tabs(); });
WordPress后台有个帮助按钮,其实没有多大用处,可以移除。将下面代码放到 functions.php 中。
add_action('in_admin_header', function(){ global $current_screen; $current_screen->remove_help_tabs(); });