Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_create_thumbnail

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1117  * @see image_resize()
1118  *
1119  * @param mixed $file Filename of the original image, Or attachment id.
1120  * @param int $max_side Maximum length of a single side for the thumbnail.
1121  * @param mixed $deprecated Never used.
1122  * @return string Thumbnail path on success, Error string on failure.
1123  */
1124 function wp_create_thumbnail( $file, $max_side, $deprecated = '' ) {
1125      _deprecated_function( __FUNCTION__, '3.5.0', 'image_resize()' );
1126      return apply_filters( 'wp_create_thumbnail', image_resize( $file, $max_side, $max_side ) );
1127 }
1128
1129 /**
1130  * This was once used to display a meta box for the nav menu theme locations.
1131  *
1132  * Deprecated in favor of a 'Manage Locations' tab added to nav menus management screen.
1133  *
1134  * @since 3.0.0
1135  * @deprecated 3.6.0