从header.php wordpress重定向无法正常工作

时间:2017-04-29 07:25:18

标签: wordpress redirect header location

如果没有登录用户而不是将用户重定向到http://example/submit-project/,则无需登录即可访问我的完整wordpress网站。

我正在尝试使用此代码执行此操作:

$current_user = wp_get_current_user(); $crntusr = $current_user; if($crntusr->ID == 0){ wp_redirect( 'example.com/login'; ); }

但是得到这个错误:

  

警告:无法修改标头信息 - 已发送的标头   (输出始于   /home/content/n3pnexwpnas02_data02/36/3929936/html/wp-content/themes/freelanceengine/header.php:14)   在   /home/content/n3pnexwpnas02_data02/36/3929936/html/wp-includes/pluggable.php   在1195号线上

1 个答案:

答案 0 :(得分:0)

1)wp_redirect()不会自动退出,几乎总是会跟着调用退出。

2)你应该在模板输出之前进行重定向。

3)最好不要使用像http://example.com这样的绝对链接,你可以通过wp_login_url()函数获取你的WP登录页面。

从header.php文件中删除重定向代码,并尝试将此代码添加到functions.php中:

add_action ('wp_loaded', 'my_custom_redirect');
function my_custom_redirect() {
    if (!is_user_logged_in() and !in_array($GLOBALS['pagenow'], array('wp-login.php', 'wp-register.php')) ) {
        wp_redirect(wp_login_url()); 
        exit;
}    
} 

更新。 如果您的登录表单位于自定义页面(http://example/submit-project/),那么您应该使用以下代码:

add_action ('wp_loaded', 'my_custom_redirect');
function my_custom_redirect() {
    if (!is_user_logged_in() and $_SERVER['REQUEST_URI'] != '/submit-project/' ) {
        wp_redirect('http://example/submit-project/'); 
        exit;
}    
}