Improve the usefulness of several _deprecated_function() calls by passing known replacement functions, methods, or hooks.

Props jrf.
See #41121.

Built from https://develop.svn.wordpress.org/trunk@40929


git-svn-id: http://core.svn.wordpress.org/trunk@40779 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2017-06-25 00:05:44 +00:00
parent c0cf33b8f5
commit acea6cbad8
5 changed files with 13 additions and 13 deletions

View File

@ -264,7 +264,7 @@ function wp_cache_add_non_persistent_groups( $groups ) {
* @global WP_Object_Cache $wp_object_cache Object cache global instance. * @global WP_Object_Cache $wp_object_cache Object cache global instance.
*/ */
function wp_cache_reset() { function wp_cache_reset() {
_deprecated_function( __FUNCTION__, '3.5.0' ); _deprecated_function( __FUNCTION__, '3.5.0', 'WP_Object_Cache::reset()' );
global $wp_object_cache; global $wp_object_cache;

View File

@ -2055,7 +2055,7 @@ final class WP_Customize_Widgets {
* @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter. * @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter.
*/ */
public function setup_widget_addition_previews() { public function setup_widget_addition_previews() {
_deprecated_function( __METHOD__, '4.2.0' ); _deprecated_function( __METHOD__, '4.2.0', 'customize_dynamic_setting_args' );
} }
/** /**
@ -2067,7 +2067,7 @@ final class WP_Customize_Widgets {
* @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter. * @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter.
*/ */
public function prepreview_added_sidebars_widgets() { public function prepreview_added_sidebars_widgets() {
_deprecated_function( __METHOD__, '4.2.0' ); _deprecated_function( __METHOD__, '4.2.0', 'customize_dynamic_setting_args' );
} }
/** /**
@ -2079,7 +2079,7 @@ final class WP_Customize_Widgets {
* @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter. * @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter.
*/ */
public function prepreview_added_widget_instance() { public function prepreview_added_widget_instance() {
_deprecated_function( __METHOD__, '4.2.0' ); _deprecated_function( __METHOD__, '4.2.0', 'customize_dynamic_setting_args' );
} }
/** /**
@ -2091,6 +2091,6 @@ final class WP_Customize_Widgets {
* @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter. * @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter.
*/ */
public function remove_prepreview_filters() { public function remove_prepreview_filters() {
_deprecated_function( __METHOD__, '4.2.0' ); _deprecated_function( __METHOD__, '4.2.0', 'customize_dynamic_setting_args' );
} }
} }

View File

@ -1650,7 +1650,7 @@ function the_author_ID() {
* @param int $encode_html Optional. How to encode the content. * @param int $encode_html Optional. How to encode the content.
*/ */
function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) { function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) {
_deprecated_function( __FUNCTION__, '2.9.0', 'the_content_feed' ); _deprecated_function( __FUNCTION__, '2.9.0', 'the_content_feed()' );
$content = get_the_content($more_link_text, $stripteaser); $content = get_the_content($more_link_text, $stripteaser);
$content = apply_filters('the_content_rss', $content); $content = apply_filters('the_content_rss', $content);
if ( $cut && !$encode_html ) if ( $cut && !$encode_html )
@ -3814,7 +3814,7 @@ function wp_kses_js_entities( $string ) {
* @return int * @return int
*/ */
function _usort_terms_by_ID( $a, $b ) { function _usort_terms_by_ID( $a, $b ) {
_deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort' ); _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort()' );
if ( $a->term_id > $b->term_id ) if ( $a->term_id > $b->term_id )
return 1; return 1;
@ -3839,7 +3839,7 @@ function _usort_terms_by_ID( $a, $b ) {
* @return int * @return int
*/ */
function _usort_terms_by_name( $a, $b ) { function _usort_terms_by_name( $a, $b ) {
_deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort' ); _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort()' );
return strcmp( $a->name, $b->name ); return strcmp( $a->name, $b->name );
} }
@ -3860,7 +3860,7 @@ function _usort_terms_by_name( $a, $b ) {
function _sort_nav_menu_items( $a, $b ) { function _sort_nav_menu_items( $a, $b ) {
global $_menu_item_sort_prop; global $_menu_item_sort_prop;
_deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort' ); _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort()' );
if ( empty( $_menu_item_sort_prop ) ) if ( empty( $_menu_item_sort_prop ) )
return 0; return 0;

View File

@ -24,7 +24,7 @@
* @return WP_Site Current site object. * @return WP_Site Current site object.
*/ */
function get_dashboard_blog() { function get_dashboard_blog() {
_deprecated_function( __FUNCTION__, '3.1.0' ); _deprecated_function( __FUNCTION__, '3.1.0', 'get_site()' );
if ( $blog = get_site_option( 'dashboard_blog' ) ) { if ( $blog = get_site_option( 'dashboard_blog' ) ) {
return get_site( $blog ); return get_site( $blog );
} }
@ -268,7 +268,7 @@ function get_most_active_blogs( $num = 10, $display = true ) {
* @param string $url Optional. Redirect URL. Default empty. * @param string $url Optional. Redirect URL. Default empty.
*/ */
function wpmu_admin_do_redirect( $url = '' ) { function wpmu_admin_do_redirect( $url = '' ) {
_deprecated_function( __FUNCTION__, '3.3.0' ); _deprecated_function( __FUNCTION__, '3.3.0', 'wp_redirect()' );
$ref = ''; $ref = '';
if ( isset( $_GET['ref'] ) ) if ( isset( $_GET['ref'] ) )
@ -308,7 +308,7 @@ function wpmu_admin_do_redirect( $url = '' ) {
* @return string * @return string
*/ */
function wpmu_admin_redirect_add_updated_param( $url = '' ) { function wpmu_admin_redirect_add_updated_param( $url = '' ) {
_deprecated_function( __FUNCTION__, '3.3.0' ); _deprecated_function( __FUNCTION__, '3.3.0', 'add_query_arg()' );
if ( strpos( $url, 'updated=true' ) === false ) { if ( strpos( $url, 'updated=true' ) === false ) {
if ( strpos( $url, '?' ) === false ) if ( strpos( $url, '?' ) === false )

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.9-alpha-40928'; $wp_version = '4.9-alpha-40929';
/** /**
* 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.