bp_blogs_record_activity_action, $activity_args[action]

bp_blogs_record_activity_action, $activity_args[action]

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: buddypress.14.5.2

apply_filters('bp_blogs_record_activity_action, $activity_args[action]') is found 2 times:

  • /bp-activity/bp-activity-functions.php line 2365
    		return;
    	} else {
    		// Backward compatibility filter for the blogs component.
    		if ( 'blogs' == $activity_post_object->component_id )  {
    			$activity_args['action'] = apply_filters( 'bp_blogs_record_activity_action', $activity_args['action'] );
    		}
    	}
    
    	$activity_id = bp_activity_add( $activity_args );
    
    	/**
    
  • /bp-activity/bp-activity-functions.php line 2678
    			return;
    		} else {
    			// Backward compatibility filter for the blogs component.
    			if ( 'blogs' === $activity_post_object->component_id )  {
    				$activity_args['action'] = apply_filters( 'bp_blogs_record_activity_action', $activity_args['action'] );
    			}
    		}
    
    		$activity_id = bp_activity_add( $activity_args );
    	}