Guest User

r-a-y

a guest
Jul 21st, 2010
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <?php //remove everything here! ?>
  2.  
  3. <li id="activity-filter-select" class="last">
  4. <select>
  5. <option value="-1"><?php _e( 'No Filter', 'buddypress' ) ?></option>
  6. <option value="activity_update"><?php _e( 'Show Updates', 'buddypress' ) ?></option>
  7.  
  8. <?php if ( bp_is_active( 'blogs' ) ) : ?>
  9. <option value="new_blog_post"><?php _e( 'Show Blog Posts', 'buddypress' ) ?></option>
  10. <option value="new_blog_comment"><?php _e( 'Show Blog Comments', 'buddypress' ) ?></option>
  11. <?php endif; ?>
  12.  
  13. <?php if ( bp_is_active( 'forums' ) ) : ?>
  14. <option value="new_forum_topic"><?php _e( 'Show New Forum Topics', 'buddypress' ) ?></option>
  15. <option value="new_forum_post"><?php _e( 'Show Forum Replies', 'buddypress' ) ?></option>
  16. <?php endif; ?>
  17.  
  18. <?php if ( bp_is_active( 'groups' ) ) : ?>
  19. <option value="created_group"><?php _e( 'Show New Groups', 'buddypress' ) ?></option>
  20. <option value="joined_group"><?php _e( 'Show New Group Memberships', 'buddypress' ) ?></option>
  21. <?php endif; ?>
  22.  
  23. <?php if ( bp_is_active( 'friends' ) ) : ?>
  24. <option value="friendship_accepted,friendship_created"><?php _e( 'Show Friendship Connections', 'buddypress' ) ?></option>
  25. <?php endif; ?>
  26.  
  27. <option value="new_member"><?php _e( 'Show New Members', 'buddypress' ) ?></option>
  28.  
  29. <?php do_action( 'bp_activity_filter_options' ) ?>
  30. </select>
  31. </li>
Advertisement
Add Comment
Please, Sign In to add comment