wp:在新页面打开评论者网站
分类:折腾日期:2010-08-10 - 11:38:17作者:老谢
很简单,把以下代码,复制到主题的function.php里面即可
function comment_author_link_window() { global $comment; $url = get_comment_author_url(); $author = get_comment_author(); if ( empty( $url ) || 'http://' == $url ) $return = $author; else $return = "<a href='$url' rel='external nofollow' target='_blank'>$author</a>"; return $return; } add_filter('get_comment_author_link', 'comment_author_link_window'); |
这个东西 不错, 我试试去.
晕, 貌似没效果..
看错了.. 是评论者, 我以为是文章呢.
@绝版黑色 我觉得文章没必要新页面打开- -#
有空试试效果
我昨天搜索了半天,最后是利用一个插件实现了你所说的这个功能
@见习枪手 我觉得能用代码还是代码好,插件用多了晃眼- -#
我也刚刚实现了这一步啊~!!