仅在第一次访问时将访问者重定向到特定页面

时间:2014-07-26 17:03:15

标签: php wordpress

标题说明了一切。

来到Wordpress索引页面的访问者应该只在第一次被重定向到其他页面。

使用Cookie实现此目的的最简单方法是什么?

1 个答案:

答案 0 :(得分:1)

尝试将以下内容添加到主题的functions.php文件中:

function check_for_redirect() {
    $days_to_expire = 30;

    if (!is_admin() && !isset($_COOKIE['already_visited'])) {
        setcookie('already_visited', true, time() + 86400 * $days_to_expire);
        wp_redirect('http://www.example.com', 302); //change the URL and status to whatever you want
        exit;
    }
}
add_action('init', 'check_for_redirect');