使用WordPress ..我想重定向到某個頁面在網站上,如果用戶訪問歸檔is_archive()重定向在WordPress
我怎麼會去這樣好嗎?我可以添加一些東西到functions.php?
乾杯, 史蒂夫
使用WordPress ..我想重定向到某個頁面在網站上,如果用戶訪問歸檔is_archive()重定向在WordPress
我怎麼會去這樣好嗎?我可以添加一些東西到functions.php?
乾杯, 史蒂夫
使用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,它可以幫助你。
在你的archive.php模板文件放在if語句在與頭部位置上重定向如果重定向的條件滿足,可能使用is_page();通過它
或聲音,如果它是一個特定的頁面,你可以做一些在.htaccess
沒有可用來實現這個插件,請找到它here
<?php
wp_redirect($location);
exit;
?>
wp_redirect
就好了
if(is_archive()){
wp_redirect($location);
}
如果你已經找到答案,你應該接受他們。 20%看起來不太好。 – ChelseaStats