Advertisement
Guest User

Untitled

a guest
Jun 25th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // create an activity loop displaying only activity items of user ID 3's followers
  2. if ( bp_has_activities( array(
  3. // change the user ID below to whatever
  4. 'user_id' => bp_get_follower_ids( 'user_id=3' ),
  5.  
  6. // only show blog posts
  7. 'action' => 'new_blog_post'
  8. ) ) ) :
  9.  
  10. // rest of the loop here
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement