关于WordPress函数comment_author_link(),如果评论者在评论的时候,输入链接,那么评论者的名字将生成一个指向它网站的url。

默认用法是:

<?php comment_author_link( $comment_ID ); ?>

但是,使用WordPress默认的comment_author_link()函数,那么系统生成的一个指向评论者网站的url,如果你点击它,那么将在评论的窗口打开评论者的网站。导致用户的流失,怎么解决呢?下面的代码可以帮助你实现,点击评论者的用户名,链接将在新的窗口打开。

<a href="<?php comment_author_url(); ?>" target="_blank"><?php print get_comment_author(); ?></a>
Last modification:April 11th, 2020 at 09:18 pm
如果觉得我的文章对你有用,请随意赞赏