在主页上显示作者图像最新帖子插件

时间: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; ?>
结束

相关推荐

在新窗口中打开_Author_link()

我需要多看一眼。我在商业主题函数中自定义了一段代码,代码如下: <div class=\"author-description\"> <h5><span class=\"fn\"><?php the_author_link(); ?></span></h5> <p class=\"note\"><?php the_author_meta( \'descriptio