你可以remove (关闭)欢迎屏幕,使用以下两个选项之一:
单人:
add_action( \'load-index.php\', \'hide_welcome_screen\' );
function hide_welcome_screen() {
$user_id = get_current_user_id();
if ( 1 == get_user_meta( $user_id, \'show_welcome_panel\', true ) )
update_user_meta( $user_id, \'show_welcome_panel\', 0 );
}
?>
多站点:
<?php
if ( ! defined( \'ABSPATH\' ) || ! is_multisite() )
return;
add_action( \'load-index.php\', \'hide_welcome_screen_for_multisite\' );
function hide_welcome_screen_for_multisite() {
$user_id = get_current_user_id();
if ( 2 == get_user_meta( $user_id, \'show_welcome_panel\', true ) )
update_user_meta( $user_id, \'show_welcome_panel\', 0 );
}
?>
欢迎面板的状态存储在网络全局的usermeta密钥中。值0表示不应显示欢迎面板(已取消显示)。值1表示应显示欢迎面板。(为单个站点WordPress安装的初始用户指定此值)。值2特定于多站点,意味着仅当用户是站点所有者时才应显示面板。
一旦解除,可通过访问屏幕选项选项卡来显示面板。
我希望这有帮助。