粘贴以下代码到主题的functions.php文件即可实现wordpress链接转跳功能。
展现方式为:https://www.uoo2.com/?go=http://www.baidu.com这种形式转跳。
add_action('wp_head','ruikeedu_gourl'); function ruikeedu_gourl(){ global $pagenow; if(is_home&&$pagenow=='index.php'){ $location=$_get['go']; if($location!=""){ wp_redirect(esc_url_raw($location),302); exit; } } }
相关推荐:《wordpress教程》
方法二:
同样粘贴以下代码到主题的functions.php文件中。不过要在编辑文章时添加一个名称为ruikeedu_gometa的自定字段,值为:你需要转跳的目标页链接。
展现方式为:http://www.uoo2.co/?goid=123这种形式转跳。
add_action('wp_head','ruikeedu_gometa'); function ruikeedu_gometa(){ global $pagenow; if(is_home&&$pagenow=='index.php'){ $postid=$_get['goid']; if($postid){ $postid=(int)$postid; $location=get_post_meta($postid,'ruikeedu_gometa',true); if($location!=""){ wp_redirect(esc_url_raw($location),302); exit; } } } }
以上就是wordpress如何添加链接跳转的详细内容。
