Skip to content

Instantly share code, notes, and snippets.

View hollylouisarose's full-sized avatar

Holly Stratton hollylouisarose

View GitHub Profile
@notasausage
notasausage / wp-custom-image-sizes.php
Last active June 28, 2024 00:32 — forked from iftee/wp-remove-default-image-sizes.php
Filter to remove default image sizes (WordPress & WooCommerce) from your theme and add custom image sizes instead.
<?php
/*
* WordPress filters to remove default image sizes and add custom sizes.
* Replace PREFIX with your theme's prefix as necessary.
* Regenerate thumbnails after adding this to your theme's functions.php file.
*/
// This function unsets the default image sizes
function PREFIX_remove_default_image_sizes( $sizes ) {