bp_blogs_remove_blog
Fires after a "blog created" item has been removed from blogs tracker and activity stream.
Description
Parameters (1)
- 0. $blog_id (int)
- ID of the blog who had its item removed.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_blogs_remove_blog', $blog_id );
- The following example is for adding a hook callback.
- // define the bp_blogs_remove_blog callback
- function action_bp_blogs_remove_blog( $blog_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_blogs_remove_blog', 'action_bp_blogs_remove_blog', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_blogs_remove_blog', 'action_bp_blogs_remove_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_blog', $blog_id );