Skip to content

Instantly share code, notes, and snippets.

@webdevsuperfast
Created July 3, 2017 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webdevsuperfast/a7cf00d8013abb433f17855909219dd4 to your computer and use it in GitHub Desktop.
Save webdevsuperfast/a7cf00d8013abb433f17855909219dd4 to your computer and use it in GitHub Desktop.
Eliminate thumbnails
<?php
@link https://bavotasan.com/2015/eliminate-thumbnails-custom-post-types/
add_filter( 'intermediate_image_sizes', rma_custom_intermediate_image_sizes, 999 );
function rma_custom_intermediate_image_sizes( $image_sizes ){
return array();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment