Advertisement
Guest User

Untitled

a guest
Apr 20th, 2021
590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. add_filter('intermediate_image_sizes_advanced', 'remove_unnecessaty_image_sizes');
  2. function remove_unnecessaty_image_sizes($sizes) {
  3.  
  4. unset($sizes['1536x1536']); // disable 2x medium-large size
  5. unset($sizes['2048x2048']); // disable 2x large size
  6.  
  7. remove_image_size( '2048x2048' );
  8. remove_image_size( '1536x1536' );
  9. return $sizes;
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement