我想将target=\\u blank添加到注释作者链接,还想将重定向链接添加到url。
下面是我所做的:
<a href="site.com/go?url=<?php echo get_comment_author_url(); ?>" target="_blank"><?php echo get_comment_author(); ?></a>
这是可行的,但如果评论作者没有网站,我想附和一下:
<span><?php echo get_comment_author(); ?></span>
那么,如何检查评论作者是否输入了url字段?
尝试了此操作,但无效:
<?php if ( ! empty( $fields[\'url\'] ) ) { ?>
Solution 感谢shanebp的回答here
<?php if( get_comment_author() == get_comment_author_link() )
comment_author_link();
else
echo \'<a href="site.com/go?url=\'. get_comment_author_url() .\'" target="_blank">\'. get_comment_author() .\'</a>\' ?>