首页 Wordpress wordpress自动内链

wordpress自动内链

给wordpress文章见容的关键词进行自动内链,方法如下。
php
//自动内链
function replace_text_wps($text){
$replace = array(
'微言心语' => '<a href="http://wuean.com/" rel="bookmark">微言心语</a>',
'个人网站' => '<a href="http://wuean.com/" rel="bookmark">个人网站</a>',
'个人博客' => '<a href="http://wuean.com/" rel="bookmark">个人博客</a>'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_text_wps');
就是在文章中遇到微言心语、个人网站、个人博客都链接到对应的链接

相关推荐

发表回复

邮箱地址不会被公开。