wordpress如何让所有外链添加nofollow属性

2025年01月30日 建站教程

wordpress如何让所有外链在新窗口打开并添加nofollow属性,下面web建站小编给大家详细介绍一下具体代码!

打开主题下functions.php文件,新增以下代码:

function cleris_url($atts, $url = null){
  extract( shortcode_atts(array('title' => null, 'href' => null), $atts) );
  return '<a target="_blank" title="'.$title.'" href="'.$href.'"
 rel="external nofollow" target="_blank">'.$url.'</a>';
}

本文链接:http://so.lmcjl.com/news/22345/

展开阅读全文
相关内容