BuddyPress - 如何显示朋友创建的帖子?
BuddyPress - How to display posts created by friends?
在带有 BuddyPress 的 WordPress 中,如何为用户 post(自定义 post 类型)显示仅由他的朋友创建的内容?
不是 as/in activity steam(网站上已禁用),但像往常一样循环 while(have_posts()):
。
提前致谢。
尝试:
$friend_ids = friends_get_friend_user_ids( bp_loggedin_user_id() );
if ( ! empty( $friend_ids ) {
$args = array(
'author__in' => $friend_ids
);
$query = new WP_Query( $args );
}
调整 $args
以包含其他参数,例如 post_type
。然后创建一个 while
循环。
在带有 BuddyPress 的 WordPress 中,如何为用户 post(自定义 post 类型)显示仅由他的朋友创建的内容?
不是 as/in activity steam(网站上已禁用),但像往常一样循环 while(have_posts()):
。
提前致谢。
尝试:
$friend_ids = friends_get_friend_user_ids( bp_loggedin_user_id() );
if ( ! empty( $friend_ids ) {
$args = array(
'author__in' => $friend_ids
);
$query = new WP_Query( $args );
}
调整 $args
以包含其他参数,例如 post_type
。然后创建一个 while
循环。