在我的主题的functions.php文件中,.comments列表显示了一个gravatar,如果用户在评论表单中填写了一个url,那么你会得到一个
comment_author_link()
使用名称打印链接。
如果有链接,我想在.avatar图片周围添加一个链接。资源中有zip / zilch(https://developer.wordpress.org/?s=comment_author&post_type[]=wp-parser-function&post_type[]=wp-parser-hook&post_type[]=wp-parser-class&post_type[]=wp-parser-method)。
就像这样,但这不起作用:
<?php if ( has_comment_author_link() ) : ?>
<a href="<?php echo comment_author_url();?>" target="_blank">
<?php endif; ?>
<?php echo get_avatar( $comment, $size='75' ); ?>
<?php if ( has_comment_author_link() ) : ?>
</a>
<?php endif; ?>
但是没有这样的&#34; has_comment_author_link
&#34;我不知道如何创造这个。
谢谢!
在Wordpress stackexchange解决:https://wordpress.stackexchange.com/questions/172152/if-there-is-a-comment-author-link-put-url-around-the-avatar-image/172156#172156