wordpress中怎么让评论者的链接新窗口打开

2025-01-07 09:58:19
推荐回答(1个)
回答1:

1、打开主题目录中的functions.php;

2、在加下以下代码:

//评论者的链接新窗口打开
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 = “$author”; 
 return $return;
}
add_filter(‘get_comment_author_link’, ‘comment_author_link_window’);
3、保存,这次再刷新有评论的页面,点击URL看看是不是在新的窗口打开了。

4、完成。