WordPress 给关键字自动添加文章链接
203 views
0
WordPress 发表文章后,建立锚文本链接在网站优化中有很重要的作用,
WoredPress 可通过添加函数设置特定关键字自动添加链接。
方法1:添加代码实现
在你的主题下面的 functions.php 文件里,添加以下代码
function replace_content_keyword($content){ $replace = array( '米扑科技' => '<a href="https://mimvp.com" rel="home">米扑科技</a>', '米扑代理' => '<a href="https://blog.mimvp.com/tag/米扑代理/" rel="home">米扑代理</a>', 'PHP' => '<a href="https://blog.mimvp.com/tag/php-2/" rel="home">PHP</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 官网:https://wordpress.org/plugins/links-auto-replacer/
Links Auto Replacer zip包:links-auto-replacer.zip
版权所有: 本文系米扑博客原创、转载、摘录,或修订后发表,最后更新于 2018-04-19 04:53:53
侵权处理: 本个人博客,不盈利,若侵犯了您的作品权,请联系博主删除,莫恶意,索钱财,感谢!