0

我已将以下代码添加到我在 wordpress 中的 functions.php 文件中,但它不起作用 - 有什么提示吗?

if(is_page( 'company-registration' ))  
{
      wp_redirect('http://www.example.com', 301 ); exit;
}

http://codex.wordpress.org/Function_Reference/is_page

通过不工作,我的意思是重定向没有发生。我也尝试过使用 WP 页面 id。

4

1 回答 1

0

You should wrap your snippet in a function hooked to template_redirect, OR put it at the very top of page.php (or any other page template), before the get_header call.

于 2013-05-13T18:22:04.437 回答