如何以作者图片显示最新帖子 时间:2018-11-10 作者:buğracan 你如何从特定类别中获取最新帖子,并将其与作者的照片一起发布。所有作者都在WordPress上签名为作者,他们都有个人资料图片。实际上,它会像这样代表立柱侧面系统必须先得到最新的1,然后第二个和第三个是这样的。。。 1 个回复 最合适的回答,由SO网友:Bob 整理而成 您可以尝试以下方式:<?php $args = array( \'category\' => 12, \'post_type\' => \'post\' ); $postslist = get_posts( $args ); foreach ($postslist as $post) : setup_postdata($post); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <h4><?php the_author();?></h4> <?php the_excerpt(); echo get_avatar(get_the_author_meta()); endforeach; ?> 在本例中,类别id设置为12-只需将其替换为要使用的类别的id即可更多信息:如何循环浏览帖子:https://developer.wordpress.org/reference/functions/get_posts/#user-contributed-notes如何获取作者姓名:https://codex.wordpress.org/Function_Reference/the_author如何获取作者图像:https://codex.wordpress.org/Function_Reference/get_avatar 结束 文章导航