为指定的关键词自动添加内链的优点就是把自己网站的关键词强行添加了链接,一定程度上利于SEO,但下面的方法不能控制链接出现的次数,所以我们在文章中不要刻意多次出现关键词,这样就避免了过度的seo,因为蜘蛛已经很智能了。
在主题的functions.php
中添加以下代码:
/* *文章关键词指定链接 */ function replace_text_wps($text){ $replace = array( 'wordpress主题' => '<a href="http://www.511yj.com/wordpress/wordpress-themes" target="_blank" title="wordpress主题">wordpress主题</a>', '511遇见' => '<a href="http://www.511yj.com/" target="_blank" title="511遇见">511遇见</a>', 'Apache/Ngnix' => '<a href="http://www.511yj.com/plcvch/ans/" target="_blank" title="Apache/Ngnix">Apache/Ngnix</a>' ); $text = str_replace(array_keys($replace), $replace, $text); return $text; } add_filter('the_content', 'replace_text_wps');
关键词和链接根据你自己的网站随便添加,多少不限,非常灵活。