做站长的应该都知道,一个网站的内链在SEO中也起到很重要的作用,因此我们在网站发布文章时,如果文章有相应关键词出现我们就应该给他添加内链,但是如果我们手动加的话有遗漏是一方面,而且还加大了我们的工作量,那么有没有给文章自动加内链方法,今天小编就给大家带来了wordpress发文章自动加内链方法,修改wordpress主题的functions.php文件(记得是主题文件里面的),并加入以下代码:
/*
*Wordpress文章关键词自动添加内链链接(tag标签)
*/
//连接数量
$match_num_from = 1; //一篇文章中同一个关键字少于多少不锚文本(这个直接填1就好了)
$match_num_to = 1; //一篇文章中同一个关键字最多出现多少次锚文本(建议不超过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, '$'),__('查看所有文章关于 %s'))."\"";
$url .= 'target="_blank"';
$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;
}
/*
*Wordpress文章关键词自动添加内链链接(关键字)
*/
function replace_text_wps($text){
$replace = array(
'改装' => '<a href="http://www.43qc.com/" >改装</a>',
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_text_wps');
上面代码一部分是自动加网站TAG标签,一个是自己想优化的词
未经允许不得转载:445IT之家 » wordpress文章自动加内链方法