在我的会员列表中,我显示了头像,用户名,个人资料数据等的标准字段 - 这一切都运行正常。
我也想显示该用户的“最新帖子”。
我是否可以使用该片段来抓取该作者的最新帖子?以某种方式确定它是谁和他们最近的帖子?
谢谢,
伊恩
答案 0 :(得分:0)
有人为我提供了很好的解决方法:
<?php
$user_id = bp_get_member_user_id();
$query = new WP_Query( 'author=' . $user_id );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
//display title
the_title();
//display content
the_content(); ?>
<a href="<?php the_permalink(); ?>">
<img src="<?php the_field('featuredimage'); ?>" alt="" />
</a>
<?php }
}
//reset for next member
wp_reset_postdata();
?>