Skip to content

Instantly share code, notes, and snippets.

@NaszvadiG
Last active April 12, 2019 08:13
Show Gist options
  • Save NaszvadiG/17f99c3bf9ab99d7a07e19bccebceec3 to your computer and use it in GitHub Desktop.
Save NaszvadiG/17f99c3bf9ab99d7a07e19bccebceec3 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