外贸营销

WordPress 给关键字自动添加文章链接
2019.09.06 外贸营销

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

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

方法1:添加代码实现

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

function replace_content_keyword($content){  $replace = array(      '深圳外贸建站' => '<a href="http://www.seo628.com" rel="home">深圳外贸建站</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:安装插件实现

WP Keyword Link (已下架)

Links Auto Replacer 官网:http://wordpress.org/plugins/links-auto-replacer/

Links Auto Replacer zip包:links-auto-replacer.zip

上一篇下一篇
标签

有问
必答