mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Deprecate wp_nav_menu_locations_meta_box(), unused since [23441]. props DrewAPicture. fixes #24942.
git-svn-id: https://develop.svn.wordpress.org/trunk@25209 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1041,3 +1041,15 @@ function wp_create_thumbnail( $file, $max_side, $deprecated = '' ) {
|
||||
_deprecated_function( __FUNCTION__, '3.5', 'image_resize()' );
|
||||
return apply_filters( 'wp_create_thumbnail', image_resize( $file, $max_side, $max_side ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* This was once used to display a metabox for the nav menu theme locations.
|
||||
*
|
||||
* Deprecated in favor of a 'Manage Locations' tab added to nav menus management screen.
|
||||
*
|
||||
* @since 3.0.0
|
||||
* @deprecated 3.6.0
|
||||
*/
|
||||
function wp_nav_menu_locations_meta_box() {
|
||||
_deprecated_function( __FUNCTION__, '3.6' );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user