wordpress网站自动添加关键词的方法
要做好wordpress网站的seo,在文章中添加关键词是非常有必要的,如果每次都手动添加,会比较麻烦。
下面给大家介绍一种非插件实现自动添加关键词的方法:
在主题函数functions.php中加入下面代码:
function replace_text_wps($text){ $replace = array( 'wp自学笔记' => '<a rel="external nofollow" target="_blank" href="https://www.518theme.com" rel="bookmark" title="wp自学笔记">wp自学笔记</a>', '踏云网络' => '<a rel="external nofollow" target="_blank" href="https://www.tayun123.com" rel="bookmark" title="踏云网络">踏云网络</a>' ); $text = str_replace(array_keys($replace), $replace, $text); return $text; } add_filter('the_content', 'replace_text_wps')
根据自己网站的需要,把关键词和链接添加进去即可,非常的方便。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END