我想为主页上的每个缩略图预览添加作者图像。
我试过了<?php echo get_avatar( get_the_author_meta( \'ID\' ), 32 ); ?>
但它在每个缩略图中都给了我相同的图像。
以下是缩略图的完整代码:
<?php
$recentp_args = array( \'numberposts\' => \'4\' );
$recent_posts = wp_get_recent_posts($recentp_args);
foreach( $recent_posts as $recent ){ ?>
<article>
<a href="<?php echo get_permalink($recent["ID"]); ?>">
<?php
$thumb = get_the_post_thumbnail( $recent["ID"], \'featuredmedium\', array( \'class\' => \'lazyload\' ) );
if ( !empty($thumb) ) { // check if the post has a Post Thumbnail assigned to it.
echo $thumb;
} else {
echo \'<img src="\'.get_bloginfo(\'template_url\').\'/images/photo_default.png" width="320" height="167" alt="" />\';
}
?>
<h2 class="title"><?php echo $recent["post_title"]; ?></h2>
<?php echo apply_filters( \'the_content\', limit_words(strip_tags($recent["post_content"]),38) ); ?>
<?php echo get_avatar( get_the_author_meta( \'ID\' ), 32 ); ?>
</a>
</article>
<?php } ?>