is_singular() 仅接受post_type, 使用is_single(\'2024\') 针对特定岗位。
if (is_single(2024)) {
wp_redirect(\'http://mysitedomain.com/../rugby/\');
exit();
}
Update:
而且
wp_redirect() 发送邮件头后不起作用。请确保在标题之前重定向。所以你可以挂接这个函数
template_redirect 把这个放进去
functions.phpfunction redirect_custom_page() {
if (is_single(\'2024\')) {
wp_redirect(\'http://mysitedomain.com/../rugby/\');
exit();
}
}
add_action(\'template_redirect\', \'redirect_custom_page\');