在主页上显示作者图像最新帖子插件 时间:2018-04-20 作者:Marc S. 在我的主页上,我展示了最后3篇博客文章,以及它们各自的标题、文本和特色图片。我需要将每个博客主页上的特色图片更改为作者博客文章的图片,但我不确定该功能放在哪里。有什么想法吗?这是我经常使用的功能:<?php echo get_avatar( get_the_author_meta( \'ID\' ) , 5); ?> 1 个回复 SO网友:Dharmishtha Patel $the_query = new WP_Query("post_type=post&paged=".get_query_var(\'paged\')); while ( $the_query->have_posts() ) : $the_query->the_post(); <?php the_excerpt(); ?> <p><?php the_author_image(); ?></p> <?php endwhile; ?> 结束 文章导航