remove_image_size() WordPress Function
The remove_image_size() function is a WordPress function used to remove an image size from an image. This function can be useful when you want to change the size of an image on your website or blog. This function can be used to remove an image size from an image that has already been added to your website or blog.
remove_image_size( string $name ) #
Remove a new image size.
Parameters
- $name
(string)(Required)The image size to remove.
Return
(bool) True if the image size was successfully removed, false on failure.
More Information
- Useful when a plugin has registered an image size and you want to use the same image name in your theme but with a different size.
- Cannot be used on reserved image size names.
Source
File: wp-includes/media.php
function remove_image_size( $name ) { global $_wp_additional_image_sizes; if ( isset( $_wp_additional_image_sizes[ $name ] ) ) { unset( $_wp_additional_image_sizes[ $name ] ); return true; } return false; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.9.0 | Introduced. |