wpmu_new_blog
The WordPress Core wpmu new blog hook.
Description
Parameters (3)
- 0. $array (callback) =>
array( &$this, 'wpmu_new_blog' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
6
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wpmu_new_blog', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the wpmu_new_blog callback
- function action_wpmu_new_blog( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wpmu_new_blog', 'action_wpmu_new_blog', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wpmu_new_blog', 'action_wpmu_new_blog', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /lib/register.php
- add_action( 'wpmu_new_blog', array( &$this, 'wpmu_new_blog' ), 10, 6 );