bp_blogs_remove_data_for_blog
Fires after all data related to a given blog has been removed from blogs tracker and activity stream.
Description
Parameters (1)
- 0. $blog_id (int)
- ID of the blog whose data is being removed.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_blogs_remove_data_for_blog', $blog_id );
- The following example is for adding a hook callback.
- // define the bp_blogs_remove_data_for_blog callback
- function action_bp_blogs_remove_data_for_blog( $blog_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_blogs_remove_data_for_blog', 'action_bp_blogs_remove_data_for_blog', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_blogs_remove_data_for_blog', 'action_bp_blogs_remove_data_for_blog', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /bp-blogs/bp-blogs-functions.php
- do_action( 'bp_blogs_remove_data_for_blog', $blog_id );