Advertisement
Guest User

Untitled

a guest
Jul 9th, 2014
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. /**
  2.  * Adds a "New Content" activity dropdown filter.
  3.  *
  4.  * This filters the activity loop by new blog posts, blog comments and forum
  5.  * topics.
  6.  */
  7. function my_bp_add_custom_activity_dropdown_filter() {
  8.     $types = 'new_blog_post,new_blog_comment,bbp_topic_create,new_forum_topic';
  9.  
  10. ?>
  11.  
  12.     <option value="<?php esc_attr_e( $types ); ?>">New Content</option>
  13.  
  14. <?php
  15. }
  16. add_action( 'bp_activity_filter_options', 'my_bp_add_custom_activity_dropdown_filter' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement