load-update.php
The WordPress Core load update php hook.
Description
Parameters (1)
- 0. $wp_update_plugins (string) =>
'wp_update_plugins'
- The
wp
update plugins.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'load-update.php', $wp_update_plugins );
- The following example is for adding a hook callback.
- // define the load-update.php callback
- function action_load_update_php( $wp_update_plugins ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'load-update.php', 'action_load_update_php', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'load-update.php', 'action_load_update_php', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /wp-includes/update.php
- add_action( 'load-update.php', 'wp_update_plugins' );
- add_action( 'load-update.php', 'wp_update_themes' );