wordpress指定关键词手动添加链接

在主题的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');

关键词和链接根据你自己的网站随便添加,多少不限,非常灵活。


发布日期:

所属分类: Wordpress 综合 标签:   


没有相关文章!