主机优惠
信息分享

通用型:WordPress TAG内链的实现效果

一直以来小七个人都不愿意折腾代码,对于主题一般也就是默认什么就是什么样!每次看到伙伴们的小站的内链做得非常好的时候,自己也想折腾一下想要这样的效果。自从使用xiu主题之后,也就基本上没有更换过主题,也没有进行个什么修改了!不过每次自己在文章添加TAG也显得不方便,索性也就so了一下,不停的试,最终找到了WordPress tag内链的实现!

其实wordpress强大的插件功能,为我们这些小白提供了不少的帮助,但插件过多会引起诸多的不便,一般都可以使用插件实现,但小七也是一个除了使用必备的几个插件之外,也是在折腾整理代码,所以整理到这个无插件实现TAG内链效果。在主题文件夹的 function.php 文件最后一个 ?> 前加入以下代码即可!

//tag自动内连连接数量
$match_num_from = 1;  //一篇文章中同一个关键字少于多少不锚文本(这个基本上不用修改)
$match_num_to = 1; //一篇文章中同一个关键字最多出现多少次锚文本(建议不超过2次,在这小七使用的1次,看自己的喜好了)
//连接到WordPress的模块
add_filter(‘the_content’,’tag_link’,1);
//按长度排序
function tag_sort($a, $b){
if ( $a->name == $b->name ) return 0;
return ( strlen($a->name) > strlen($b->name) ) ? -1 : 1;
}
//改变标签关键字
function tag_link($content){
global $match_num_from,$match_num_to;
$posttags = get_the_tags();
if ($posttags) {
usort($posttags, “tag_sort”);
foreach($posttags as $tag) {
$link = get_tag_link($tag->term_id);
$keyword = $tag->name;
//连接代码
$cleankeyword = stripslashes($keyword);
$url = “<a href=\”$link\” title=\””.str_replace(‘%s’,addcslashes($cleankeyword, ‘$’),__(‘View all posts in %s’)).”\””;
$url .= ‘ target=”_blank” class=”tag_link”‘;
$url .= “>”.addcslashes($cleankeyword, ‘$’).”</a>”;
$limit = rand($match_num_from,$match_num_to);
//不连接的 代码
$content = preg_replace( ‘|(<a[^>]+>)(.*)(‘.$ex_word.’)(.*)(</a[^>]*>)|U’.$case, ‘$1$2%&&&&&%$4$5’, $content);
$content = preg_replace( ‘|(<img)(.*?)(‘.$ex_word.’)(.*?)(>)|U’.$case, ‘$1$2%&&&&&%$4$5’, $content);
$cleankeyword = preg_quote($cleankeyword,’\”);
$regEx = ‘\'(?!((<.*?)|(<a.*?)))(‘. $cleankeyword . ‘)(?!(([^<>]*?)>)|([^>]*?</a>))\’s’ . $case;
$content = preg_replace($regEx,$url,$content,$limit);
$content = str_replace( ‘%&&&&&%’, stripslashes($ex_word), $content);
}
}
return $content;
}

目前vps推荐网也就是使用的这个代码,大家可以查看的,使用的主题是xiu主题,对于xiu主题小七是添加到末尾的!

赞(0)
欢迎转载:VPS推荐网 » 通用型:WordPress TAG内链的实现效果