wordpress评论链接在新窗口中打开
发布:站生 | 发布时间: 2010年7月28日为了便于不使用户及时离开我们的博客,wordpress默认的评论链接是在同一窗口中打开的,不知道是开发程序的人是故意这样的还是忽略了这一点,下面说给大家说下修改wordpress评论链接在新窗口中打开的方法。
如果你的博客主题调用的是wordpress函数,那么在wp-includes\comment-template.php中找到如何代码:
function get_comment_author_link() {
/** @todo Only call these functions when they are needed. Include in if... else blocks */
$url = get_comment_author_url();
$author = get_comment_author();
if ( empty( $url ) || 'http://' == $url )
$return = $author;
else
$return = "<a href='$url' rel='external nofollow' class='url'>$author</a>";
return apply_filters('get_comment_author_link', $return);
}
在a标签处添加target='_blank'即可。
如果是调用的博客主题函数,那么找到你主题下的functions.php文件,搜索external nofollow,在a标签处添加target='_blank'即可。
在不确定的情况下,干脆把两处都修改下得了。
- 相关文章:
百度快照不更新解决的四大绝招 (2010-7-17 11:49:49)
wordpress的插件最好不要随便升级 (2010-7-3 16:14:32)
godaddy DELUXE PLAN windows主机安装wordpress登录后台自动退出 (2010-7-2 11:7:11)
做优化网站关键词布局浅析 (2010-7-1 9:35:15)
通过导入链接提升网站权重方法 (2010-6-11 10:16:51)
八项决定我是否与你互换链接 (2010-5-22 23:29:7)
wp super cache卸载失败提示:UNINSTALL_WPSUPERCACHE must be …… (2010-5-17 17:10:30)
wordpress首页日志摘要插件 wp-utf8-excerpt (2010-5-13 13:6:6)
与wordpress静态化插件cos-html-cache无缘了 (2010-5-11 21:19:20)
wordpress+iis+rewrite免写伪静态规则,不会写伪静态的福音 (2010-5-10 18:48:23)
发表评论
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。