Guest User

Untitled

a guest
Jan 21st, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. $notifications = bp_notifications_get_notifications_for_user( bp_loggedin_user_id() )
  2. if ( $notifications ) {
  3.     $counter = 0;
  4.     for ( $i = 0, $count = count( $notifications ); $i < $count; ++$i ) {
  5.         <div class="notif"><?php echo $notifications[$i] ?></div>
  6.         <?php
  7.          $counter++;
  8.         } ?>
  9.     <?php
  10. }
Advertisement
Add Comment
Please, Sign In to add comment