Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created August 6, 2021 16:08
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 Pebblo/b033ac5ceae674299197196753ee496c to your computer and use it in GitHub Desktop.
Save Pebblo/b033ac5ceae674299197196753ee496c to your computer and use it in GitHub Desktop.
Example of how to filter the Divi 'Grab the first post image' option to disable it for EE post types.
<?php
add_filter('et_grab_image_setting', 'tw_ee_divi_et_grab_image_setting');
function tw_ee_divi_et_grab_image_setting($setting) {
if( strpos(get_post_type(), 'espresso_') !== false ) {
return false;
}
return $setting;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment