Docs: Use 3-digit, x.x.x style semantic versioning for `$version` argument in `do_action_deprecated()` and `apply_filters_deprecated()` calls.
Props jrf. Fixes #48255. Built from https://develop.svn.wordpress.org/trunk@46689 git-svn-id: http://core.svn.wordpress.org/trunk@46489 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6ed1a7b615
commit
4d8a0a8b33
|
@ -611,7 +611,7 @@ function remove_all_actions( $tag, $priority = false ) {
|
|||
* return apply_filters( 'wpdocs_filter', $value, $extra_arg );
|
||||
*
|
||||
* // Deprecated.
|
||||
* return apply_filters_deprecated( 'wpdocs_filter', array( $value, $extra_arg ), '4.9', 'wpdocs_new_filter' );
|
||||
* return apply_filters_deprecated( 'wpdocs_filter', array( $value, $extra_arg ), '4.9.0', 'wpdocs_new_filter' );
|
||||
*
|
||||
* @since 4.6.0
|
||||
*
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.4-alpha-46688';
|
||||
$wp_version = '5.4-alpha-46689';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue