wp_install
Fires after a site is fully installed.
Description
Parameters (1)
- 0. $user (WP_User)
- The site owner.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_install', $user );
- The following example is for adding a hook callback.
- // define the wp_install callback
- function action_wp_install( $user ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_install', 'action_wp_install', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_install', 'action_wp_install', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/includes/upgrade.php
- do_action( 'wp_install', $user );