我在wordpress page.php中使用标题位置进行重定向,但它提供了标题已发送警告而不重定向页面,我根据页面重定向重定向页面
global $post;
$post_slug=$post->post_name;
if($post_slug == 'about'){
header("location:".get_site_url().'/about-us/');
}
答案 0 :(得分:1)
你的代码是正确的,只需在get_header()之前使用它;在你的page.php中