Skip to content

Instantly share code, notes, and snippets.

@cliffordp
Last active July 16, 2020 05:40
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 cliffordp/4efbd9219f427f78b5f2e6101700935f to your computer and use it in GitHub Desktop.
Save cliffordp/4efbd9219f427f78b5f2e6101700935f to your computer and use it in GitHub Desktop.
Disable Divi custom image sizes
<?php
/**
* Disable Divi's custom media image sizes, as added via /wp-content/themes/Divi/post_thumbnails_divi.php
*
* DOES NOT WORK as of July 2020, but https://wordpress.org/plugins/image-sizes/ did work.
*
* @link https://gist.github.com/cliffordp/4efbd9219f427f78b5f2e6101700935f This snippet.
*
* @see __return_empty_array()
*/
add_filter( 'et_theme_image_sizes', '__return_empty_array', 50 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment