首先home_url 没有提供任何东西。您应该使用is_home() 功能。
之后,您需要在尝试重定向时退出脚本。因此,您的完整代码应该如下所示:
if ( is_user_logged_in() && is_home() ) {
wp_redirect(\'http://example.com/\') ;
exit();
}
您还应该钩住右侧的动作钩。用于重定向的正确挂钩是
template_redirect:
add_action ( \'template_redirect\', \'redirect_my_homepage\' );
function redirect_my_homepage(){
if ( is_user_logged_in() && is_home() ) {
wp_redirect(\'http://example.com/\') ;
exit();
}
}