您现在的位置是:首页 > 教程 > WordPress教程WordPress教程

wordpress添加链接跳转的两种方法

谢雄民2023-06-30 12:25:14WordPress教程已有人查阅

导读方法一:粘贴以下代码到主题的functions.php文件即可实现wordpress链接转跳功能。展现方式为:https:// .uoo2.com/?go=http:// .baidu.com这种形式转跳。

方法一:粘贴以下代码到主题的functions.php文件即可实现wordpress链接转跳功能。展现方式为:https:// .uoo2.com/?go=http:// .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;    
}    
}    
}

方法二:同样粘贴以下代码到主题的functions.php文件中。不过要在编辑文章时添加一个名称为ruikeedu_gometa的自定字段,值为:你需要转跳的目标页链接。展现方式为:http:// .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;    
}    
}    
}    
}

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

相关标签