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