wp_update_plugins
The WordPress Core wp update plugins 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( 'wp_update_plugins', $wp_update_plugins );
- The following example is for adding a hook callback.
- // define the wp_update_plugins callback
- function action_wp_update_plugins( $wp_update_plugins ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_update_plugins', 'action_wp_update_plugins', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_update_plugins', 'action_wp_update_plugins', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/update.php
- add_action( 'wp_update_plugins', 'wp_update_plugins' );