在page.php

时间:2018-05-30 08:19:37

标签: wordpress

我在wordpress page.php中使用标题位置进行重定向,但它提供了标题已发送警告而不重定向页面,我根据页面重定向重定向页面

global $post;
$post_slug=$post->post_name;

 if($post_slug == 'about'){
    header("location:".get_site_url().'/about-us/');
 }

1 个答案:

答案 0 :(得分:1)

你的代码是正确的,只需在get_header()之前使用它;在你的page.php中