发现有的板子在评论列表这一块,点击评论人的名字,会直接在本窗口中跳转到目标链接,而此时浏览者却不一定是真正要终止此处访问,所以有必要让这个链接在新窗口中打开。其实要这么做很简单,但是很多做模板的人并没有这么做。要实现这一点只需以下一个步骤即可 »
<?php if (get_comment_author_url()) : ?>
<a id=”commentauthor-<?php comment_ID() ?>” class=”url” href=”<?php comment_author_url() ?>” rel=”external nofollow”>
<?php else : ?>
<span id=”commentauthor-<?php comment_ID() ?>”>
<?php endif; ?>
在comments.php或functions.php(个别模板)找到以上代码,主要是显示评论人名字及链接的地方,在上方淡蓝色处中间添加 target=”_blank” 即添加后为
<?php if (get_comment_author_url()) : ?>
<a id=”commentauthor-<?php comment_ID() ?>” class=”url” href=”<?php comment_author_url() ?>” target=”_blank” rel=”external nofollow”>
<?php else : ?>
<span id=”commentauthor-<?php comment_ID() ?>”>
<?php endif; ?>
注意前后空格。
[audio:http://www.qiqiboy.com/files/audio/if ever.mp3]