Docs: Remove "private" designation from _doing_it_wrong()
and related functions:
* `_deprecated_function()` * `_deprecated_argument()` * `_deprecated_constructor()` * `_deprecated_file()` Plugins and themes should be allowed to use these functions to throw appropriate error notices. This brings them in line with newer `do_action_deprecated()` and `apply_filters_deprecated()` functions, which are not marked as private. Props jrf. Fixes #48251. git-svn-id: https://develop.svn.wordpress.org/trunk@46602 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f06419d070
commit
6ac79feeeb
@ -4547,7 +4547,7 @@ function absint( $maybeint ) {
|
||||
* This function is to be used in every function that is deprecated.
|
||||
*
|
||||
* @since 2.5.0
|
||||
* @access private
|
||||
* @since 5.4.0 This function is no longer marked as "private".
|
||||
*
|
||||
* @param string $function The function that was called.
|
||||
* @param string $version The version of WordPress that deprecated the function.
|
||||
@ -4604,8 +4604,7 @@ function _deprecated_function( $function, $version, $replacement = null ) {
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @since 4.5.0 Added the `$parent_class` parameter.
|
||||
*
|
||||
* @access private
|
||||
* @since 5.4.0 This function is no longer marked as "private".
|
||||
*
|
||||
* @param string $class The class containing the deprecated constructor.
|
||||
* @param string $version The version of WordPress that deprecated the function.
|
||||
@ -4697,7 +4696,7 @@ function _deprecated_constructor( $class, $version, $parent_class = '' ) {
|
||||
* This function is to be used in every file that is deprecated.
|
||||
*
|
||||
* @since 2.5.0
|
||||
* @access private
|
||||
* @since 5.4.0 This function is no longer marked as "private".
|
||||
*
|
||||
* @param string $file The file that was included.
|
||||
* @param string $version The version of WordPress that deprecated the file.
|
||||
@ -4764,7 +4763,7 @@ function _deprecated_file( $file, $version, $replacement = null, $message = '' )
|
||||
* The current behavior is to trigger a user error if WP_DEBUG is true.
|
||||
*
|
||||
* @since 3.0.0
|
||||
* @access private
|
||||
* @since 5.4.0 This function is no longer marked as "private".
|
||||
*
|
||||
* @param string $function The function that was called.
|
||||
* @param string $version The version of WordPress that deprecated the argument used.
|
||||
@ -4871,7 +4870,7 @@ function _deprecated_hook( $hook, $version, $replacement = null, $message = null
|
||||
* The current behavior is to trigger a user error if `WP_DEBUG` is true.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access private
|
||||
* @since 5.4.0 This function is no longer marked as "private".
|
||||
*
|
||||
* @param string $function The function that was called.
|
||||
* @param string $message A message explaining what has been done incorrectly.
|
||||
|
Loading…
Reference in New Issue
Block a user