palmdoc

BP Filter Activity bbPress posts

Apr 24th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // Filter bbPress from updating activity stream
  2. function imath_activity_dont_save( $activity_object ) {
  3. $exclude = array( 'bbp_topic_create', 'bbp_reply_create');
  4.  
  5. // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
  6. if( in_array( $activity_object->type, $exclude ) )
  7. $activity_object->type = false;
  8.  
  9. }
  10.  
  11. add_action('bp_activity_before_save', 'imath_activity_dont_save', 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment