如何让wordpress的所有链接都在新窗口打开
只需要再 WordPress 主题的 functions.php 文件中添加如下代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/*链接新标签页打开*/ add_filter('the_content','the_content_blank',999); function the_content_blank($content) { preg_match_all('/<a(.*?)href="(.*?)"(.*?)>/',$content,$matches); if($matches){ foreach($matches[2] as $val){ if(strpos($val, "#")===false && !preg_match('/\.(jpg|jepg|png|ico|bmp|gif|tiff)/i',$val)) { $content = str_replace( "href=\"".$val."\"", " target=\"_blank\" "."href=\"".$val."\"", $content ); } } } return $content; } /*链接新标签页打开*/ |
如果你想只有非本站的链接才在新窗口打开,那么就再加一个判断条件:
1 |
strpos($val,home_url())===false |
,基于这个方法,基本你想对文章中的链接进行什么操作都可以实现了。