Docs: Correct a function name in the `do_action()` documentation.
See #37402 Built from https://develop.svn.wordpress.org/trunk@45421 git-svn-id: http://core.svn.wordpress.org/trunk@45232 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9abcf7881f
commit
e91bf3535c
|
@ -432,7 +432,7 @@ function add_action( $tag, $function_to_add, $priority = 10, $accepted_args = 1
|
||||||
* *
|
* *
|
||||||
* * - 'example_action' is the action hook
|
* * - 'example_action' is the action hook
|
||||||
* * - $arg1 and $arg2 are the additional arguments passed to the callback.
|
* * - $arg1 and $arg2 are the additional arguments passed to the callback.
|
||||||
* $value = apply_actions( 'example_action', $arg1, $arg2 );
|
* $value = do_action( 'example_action', $arg1, $arg2 );
|
||||||
*
|
*
|
||||||
* @since 1.2.0
|
* @since 1.2.0
|
||||||
*
|
*
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.3-alpha-45420';
|
$wp_version = '5.3-alpha-45421';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue