WordPress implements automatic article tag extraction and link addition

WordPress implements automatic article tag extraction and link addition


There are many ways to automatically extract tags from articles in WordPress, and the most convenient way is to use a plug-in. Today I will share a method to automatically extract tags and add links to articles without using plugins.
Log in to the blog backend, open the function.php function of the blog theme, and add the following code to this file:

//連接數量
$match_num_from = 1; //一個關鍵字少于多少不替換
$match_num_to = 10; //一個關鍵字最多替換
//連接到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"';
$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;
}

Purely for your own convenience.

<<:  $19.95/month/512M memory/24G space/2TB traffic/XEN VPS —— Linode

>>:  VPS for less than $20 per year

Recommend

ServerRoom: $79/year/8GB RAM/32GB SSD space/unlimited traffic/New York

ServerRoom, an American hosting company, was foun...

BudgetVM is giving away $20 for 3 months of free 2GB XEN VPS

BudgetVM, introduced many times. This time, $20 w...

SteadyNode: $7.49/year/2GB SSD space/100GB traffic/can bind 3 domain names

SteadyNode, a foreign hosting provider, was estab...

LetBox: $40/year/2GB RAM/40GB SSD/10TB bandwidth/OpenVZ/Los Angeles

LetBox, an American hosting provider, was first i...

Stable and free DNS —— dnspark.net

The free DNS resolution service provided by DNS P...