2012-06-21 93 views
1

使用WordPress ..我想重定向到某個頁面在網站上,如果用戶訪問歸檔is_archive()重定向在WordPress

我怎麼會去這樣好嗎?我可以添加一些東西到functions.php?

乾杯, 史蒂夫

+1

如果你已經找到答案,你應該接受他們。 20%看起來不太好。 – ChelseaStats

回答

1

使用WordPress鉤在functions.php,只需粘貼你functions.php

function redirect_to_url(){ 
    if(is_archive()){ 
     $url='your redirect url url'; 
     wp_redirect($url); 
    } 

} 
add_action('template_redirect', 'redirect_to_url'); 

這個片段中有一篇文章here,它可以幫助你。

0

在你的archive.php模板文件放在if語句在與頭部位置上重定向如果重定向的條件滿足,可能使用is_page();通過它

或聲音,如果它是一個特定的頁面,你可以做一些在.htaccess

0

沒有可用來實現這個插件,請找到它here

1
<?php 
    wp_redirect($location); 
    exit; 
?> 
1

wp_redirect就好了

if(is_archive()){ 
    wp_redirect($location); 
}