【WordPress美化】文章自动添加关键词链接

云墨
云墨
云墨
647
文章
0
评论
2018年9月1日 1 1,593

【WordPress美化】文章自动添加关键词链接

在主题的functions.php文件中添加以下代码:

  1. /*
  2. *自动为文章内的标签添加内链开始
  3. */
  4. //连接数量
  5. $match_num_from = 1//一个关键字少于多少不替换
  6. $match_num_to = 1//一个关键字最多替换次数
  7. //连接到WordPress的模块
  8. add_filter('the_content','tag_link',1);
  9. //按长度排序
  10. function tag_sort($a, $b){
  11. if ( $a->name == $b->name ) return 0;
  12. return ( strlen($a->name) > strlen($b->name) ) ? -1 : 1;
  13. }
  14. //改变标签关键字
  15. function tag_link($content){
  16. global $match_num_from,$match_num_to;
  17. $posttags = get_the_tags();
  18. if ($posttags) {
  19. usort($posttags, "tag_sort");
  20. foreach($posttags as $tag) {
  21. $link = get_tag_link($tag->term_id);
  22. $keyword = $tag->name;
  23. //连接代码
  24. $cleankeyword = stripslashes($keyword);
  25. $url = "<a href=\"$link\" title=\"".str_replace('%s',addcslashes($cleankeyword, '$'),__('查看所有文章关于 %s'))."\"";
  26. $url .= 'target="_blank"';
  27. $url .= ">".addcslashes($cleankeyword, '$')."</a>";
  28. $limit = rand($match_num_from,$match_num_to);
  29. //不连接的代码
  30. $content = preg_replace( '|(<a[^>]+>)(.*)('.$ex_word.')(.*)(</a[^>]*>)|U'.$case, '$1$2%&&&&&%$4$5', $content);
  31. $content = preg_replace( '|(<img)(.*?)('.$ex_word.')(.*?)(>)|U'.$case, '$1$2%&&&&&%$4$5', $content);
  32. $cleankeyword = preg_quote($cleankeyword,'\'');
  33. $regEx = '\'(?!((<.*?)|(<a.*?)))('. $cleankeyword . ')(?!(([^<>]*?)>)|([^>]*?</a>))\'s' . $case;
  34. $content = preg_replace($regEx,$url,$content,$limit);
  35. $content = str_replace( '%&&&&&%', stripslashes($ex_word), $content);
  36. }
  37. }
  38. return $content;
  39. }

为了防止避免过度SEO,强烈建议最多替换2个重复的词!!

1. 如有链接无法下载、失效或广告,请联系QQ:181289218 处理!
2. 本站的所有资源为购买、网络收集,或者用户投稿的资源,版权归原作者及网站所有!
3. 如若侵犯了您的权利,请及时联系站长删除!
4. 本站提供的资源,都不包含技术服务请大家谅解!
5. 此软件“仅限学习交流,不能用于商业用途”!
6. 如用于商业用途,请到官方购买正版软件,追究法律责任与“云墨SEO”站点无关!
  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 站长技术资源群
  • QQ群:431710796
  • weinxin
云墨
  • 本文由 发表于 2018年9月1日
  • 转载请务必保留本文链接:https://www.yunmoseo.com/1558.html
WordPress回复评论自动添加@评论者的修改方法 网站建设

WordPress回复评论自动添加@评论者的修改方法

有网友留言,问我这个@昵称回复如何实现的?如下图: 其实之前我也看到很多博客有这样的功能,但是我是在后台审核并回复评论的,之前有好几次因为没注意评论信息栏的:回复给***,还以为是给我的留言,所以给人...
匿名

发表评论

匿名网友

    • 靠谱代购 靠谱代购

      我怎么会相信你,悔我一世聪明