WordPress 给关键字自动添加文章链接插件

WordPress 发表文章后,建立锚文本链接在网站优化中有很重要的作用,

WoredPress 可通过添加函数设置特定关键字自动添加链接。

方法1:添加代码实现

在你的主题下面的 functions.php 文件里,添加以下代码

function replace_content_keyword($content){
  $replace = array(
      '小兽wordpress' => '<a href="http://www.seo628.com" rel="home">小兽wordpress</a>',
      'wordpress主题' => '<a href="http://www.seo628.com" rel="home">wordpress主题</a>',
      'wordpress企业主题' => '<a href="http://www.seo628.com" rel="home">wordpress企业主题</a>',
   );
  $content = str_replace(array_keys($replace), $replace, $content);
  return $content;
}
add_filter('the_content', 'replace_text_wps');

方法2:安装插件实现:Keywords to Links Converter 官网https://wordpress.org/plugins/links-auto-replacer/

上面插件经测试不能使用,激活后变卡,首页文字截取会出现错误.而且只能站内链接,站外要收费.39.9刀