如何以作者图片显示最新帖子

时间:2018-11-10 作者:buğracan

你如何从特定类别中获取最新帖子,并将其与作者的照片一起发布。所有作者都在WordPress上签名为作者,他们都有个人资料图片。实际上,它会像这样代表立柱侧面enter image description here系统必须先得到最新的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

结束

相关推荐

Can you set a role as author?

我是WordPress的新手,我正在尝试找出如何最好地设置权限。我想限制人员组只编辑某些页面(IT部门只编辑IT页面,人力资源部门只编辑人力资源页面等等)。据我所知,您取消了角色“编辑其他页面”的权限,然后将页面的作者设置为您要编辑的人。是否有一种设置多个作者的标准方法,或者是否有一种使角色成为作者而不是单个用户的方法?谢谢