Skip to content

Instantly share code, notes, and snippets.

@slaFFik
Created March 9, 2014 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slaFFik/cf2f5335299ccad82188 to your computer and use it in GitHub Desktop.
Save slaFFik/cf2f5335299ccad82188 to your computer and use it in GitHub Desktop.
BuddyPress: Только вы и друзья в ленте активности
<?php
$friends = friends_get_friend_user_ids( bp_loggedin_user_id() );
$friends[] = bp_loggedin_user_id();
$friends_and_me = implode( ',', (array) $friends );
$friends_and_me = '&user_id=' . $friends_and_me;
?>
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . $friends_and_me) ) : ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment