WordPress为关键字自动添加链接
2013年6月2日
锚文本链接在网站优化中有很重要的作用,WoredPress可通过添加函数设置特定关键字自动添加链接。
1 2 3 4 5 6 7 8 9 | function replace_text_wps($text){ $replace = array( 'VPS12.com' => '<a href="http://www.vps12.com/" rel="home">VPS12.com</a>', 'VPS' => '<a href="http://www.vps12.com/" rel="home">VPS12.com</a>' ); $text = str_replace(array_keys($replace), $replace, $text); return $text; } add_filter('the_content', 'replace_text_wps'); |
» vps12.com:http://www.vps12.com
» 转载请注明来源:运维部落 » 《WordPress为关键字自动添加链接》