之前一直使用WP keyword link这个插件给文章中的关键字增加内链,以优化SEO。但插件多了对博客的速度肯定有影响,所以找了个无插件实现的方法。实现起来也很简单,只需在主题文件夹中的function.php最后一个?>之前增加以下代码即可实现tag自动内链:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
//连接数量 $match_num_from = 1; //一个关键字少于多少不替换 $match_num_to = 2; //一个关键字最多替换 //连接到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; } |
主题授权提示:请在后台主题设置-主题授权-激活主题的正版授权,授权购买:RiTheme官网
声明:本站发布的所有资源均来自于互联网,所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。
如侵犯到您的权益,请及时通知我们,我们会及时处理。邮箱:505289534@qq.com
评论(0)