您的位置:首页 > 其它

wordpress优化之链接在新窗口打开

2017-09-03 23:30 253 查看
在新窗口打开WordPress文章中的链接,让文章中的所有链接都在新窗口打开。要实现这个功能,你可以在添加链接的时候,可以手动选择打开方式(给链接添加 target=_blank”属性)。下面介绍一种方法自动实现该功能:只需要在你的WordPress主题的 functions.php 的最后一个 ?> 前添加下面的代码就可以了:

function autoblank($text) {
$return = str_replace('<a', '<a target="_blank"', $text);
return $return;
}
add_filter('the_content', 'autoblank');

或者加入
<h2><a href="<?php the_permalink() ?>" target="_blank"title="<?php the_title(); ?> - <?php bloginfo('name'); ?>"><?php the_title(); ?></a></h2>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: