0

在我的成员列表中,我显示了头像、用户名、个人资料数据等的标准字段——这一切都很好。

我也想显示该用户的“最新帖子”。

有没有我可以用来从该作者那里获取最新帖子的片段?以某种方式确定它是哪个作者以及他们最近的帖子?

谢谢,

伊恩

4

1 回答 1

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();
?>
于 2013-06-28T13:44:09.490 回答