add_action(\'template_redirect\', \'add_header_redirect\', 0, 0);
function add_header_redirect(){
if( is_page(array(8, \'testimonials\', \'Testimonials\')) ){
$default_testimonial = get_permalink( 19 );
header("Location: $default_testimonial");
}
}
此代码在我的函数中。php文件,仅当我登录到WP时才起作用。我希望重定向所有转到/推荐的用户。发生什么事了?