猿问

获取文章作者图片 - Wordpress

在 WordPress 中,我需要获取创建帖子的作者的作者图像。我试图以这种方式获取个人资料图片,但没有成功。


这是我为获取其他 author_meta_details 而编写的代码。


<div class="row">

    <div class="avatar col-md-3">

        <picture class="avatar-circle">

            <?php if($avatar = get_avatar(get_the_author_meta('ID')) !== FALSE): ?>

            <img src="<?php echo $avatar; ?>" alt="">

            <?php else: ?>

            <img src="/wp-content/themes/lymited-child/images/avatar-image.png">

            <?php endif; ?>

        </picture>

    </div>

    <div class="author-details col-md-9">

        <div class="author-name"><strong><?php echo get_the_author_meta('first_name'); ?></strong> - <?php echo get_the_author_meta('nickname'); ?>

        </div>

        <div class="author-summery"><?php echo get_the_author_meta('description'); ?>

        </div>

    </div>

</div>


拉风的咖菲猫
浏览 91回答 2
2回答

慕容3067478

尝试这个<?php&nbsp; &nbsp;$get_author_id = get_the_author_meta('ID');&nbsp; &nbsp;$get_author_gravatar = get_avatar_url($get_author_id, array('size' => 450));&nbsp; &nbsp;if(has_post_thumbnail()){&nbsp; &nbsp; &nbsp; the_post_thumbnail();&nbsp; &nbsp;} else {&nbsp; &nbsp; &nbsp; echo '<img src="'.$get_author_gravatar.'" alt="'.get_the_title().'" />';&nbsp; &nbsp;}?>或删除此条件并尝试echo get_avatar( get_the_author_meta('ID') );

千万里不及你

get_avatar()返回<img>元素,因此您无需再次将其包装img起来也需要包装$avatar = ...到括号中,因为=优先级低于!==尝试更换这个<?php if ( $avatar = get_avatar(get_the_author_meta('ID')) !== FALSE): ?>&nbsp; &nbsp;<img src="<?php echo $avatar; ?>" alt="">有了这个<?php if ( ( $avatar = get_avatar(get_the_author_meta('ID')) ) !== FALSE): ?>&nbsp; &nbsp; <?php echo $avatar; ?>
随时随地看视频慕课网APP
我要回答