Skip to content

Instantly share code, notes, and snippets.

@hslaszlo
Forked from NaszvadiG/functions.php
Created April 12, 2019 08:13
Show Gist options
  • Save hslaszlo/2018a85213119015b957797517fc3209 to your computer and use it in GitHub Desktop.
Save hslaszlo/2018a85213119015b957797517fc3209 to your computer and use it in GitHub Desktop.
Szükségtelen képméretek eltávolítása WP-ből
<?php
function remove_unused_image_sizes()
{
remove_image_size( 'image-size-150x150' );
remove_image_size( 'image-size-550x550' );
remove_image_size( 'image-size-550x550-@2x' );
}
add_action('init', 'remove_unused_image_sizes');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment