make_ham_blog
Fires when the blog status is changed to 'ham'.
Description
Parameters (1)
- 0. $blog_id (int)
- The blog id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'make_ham_blog', $blog_id );
- The following example is for adding a hook callback.
- // define the make_ham_blog callback
- function action_make_ham_blog( $blog_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'make_ham_blog', 'action_make_ham_blog', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'make_ham_blog', 'action_make_ham_blog', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /wp-includes/ms-blogs.php
- do_action( 'make_ham_blog', $blog_id );
- do_action( 'make_ham_blog', $blog_id );