文章内自动添加关键词链接,协助收录内页优化

在你写文章或者搬运的时候,发布之前你会设置很多标签,比如你发布小姐姐内容,就会设置妹子,小姐姐,这些关键词标签,往往需要搜索才能找到,这里给大家分享这个是你把代买放在你主题的functions.php,然后你的文章里就自动包含了你网站的关键词,就会自动添加超链接,也是更好的协助网站收录优化,提高内页收录

1.将下面的 PHP 代码加入到主题目录下的functions.php 文件中。

//文章添加关键词链接开始
function wpkj_auto_add_tag_link($content){
$limit = 1; // 设置同一个标签添加几次链接
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
$link = get_tag_link($tag->term_id);
$keyword = $tag->name;
$cleankeyword = stripslashes($keyword);
$url = '<a target="_blank" href="'.$link.'" title="'.str_replace('%s', addcslashes($cleankeyword, '$'), __('View all posts in %s')).'">'.addcslashes($cleankeyword, '$').'</a>';
$regEx = '\'(?!((<.*?)|(<a.*?)))('. $cleankeyword . ')(?!(([^<>]*?)>)|([^>]*?</a>))\'s';
$content = preg_replace($regEx,$url,$content,$limit);
}
}
return $content;
}
add_filter( 'the_content', 'wpkj_auto_add_tag_link', 1 );  
//文章添加关键词链接结束
© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享