您正在查找的操作是auth\\u redirect,它位于页眉之前,但仍然可以识别$pagenow来判断您所在的页面:
add_action(\'auth_redirect\', \'the_mobile_boot\');
function the_mobile_boot() {
global $pagenow;
if ( $pagenow == \'index.php\' && wp_is_mobile() ) {
header( \'Location: \' . get_admin_url(null, \'edit.php\') );
exit;
}
}