1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > php给文章关键词加内链 WordPress文章关键词如何实现自动添加内链方法?

php给文章关键词加内链 WordPress文章关键词如何实现自动添加内链方法?

时间:2022-01-17 01:39:12

相关推荐

php给文章关键词加内链 WordPress文章关键词如何实现自动添加内链方法?

我们在编写文章的时候需要给关键词添加内链,从而有助于SEO优化,如果一个一个手动添加就会很麻烦,那么WordPress文章关键词如何实现自动添加内链方法?

在主题根目录下的functions.php文件的<?php下添加以下代码 :

/*

*Wordpress文章关键词自动添加内链链接代码

*

*/

//连接数量

$match_num_from = 1; //一个关键字少于多少不替换

$match_num_to = 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 = "

$url .= 'target="_blank"';

$url .= ">".addcslashes($cleankeyword, '$')."

";

$limit = rand($match_num_from,$match_num_to);

//不连接的代码

$content = preg_replace( '|(]+>)(.*)('.$ex_word.')(.*)(]*>)|U'.$case, '$1$2%&&&&&%$4$5', $content);

$content = preg_replace( '|()|U'.$case, '$1$2%&&&&&%$4$5', $content);

$cleankeyword = preg_quote($cleankeyword,'\'');

$regEx = '\'(?!((<. .>]*?)>)|([^>]*?))\'s' . $case;

$content = preg_replace($regEx,$url,$content,$limit);

$content = str_replace( '%&&&&&%', stripslashes($ex_word), $content);

}

}

return $content;

}

大家可根据自己的需要依据代码注释进行修改。在编辑文章时添加标签,这段代码会自动寻找文中出现的标签并添加链接。

提示:

经测试,推荐都填1,其他数值会出现不可描述的意外。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。