Skip to content

Instantly share code, notes, and snippets.

@zmonteca
Created March 28, 2018 18:31
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 zmonteca/c4559db1af046a47ac0172eb25a484a3 to your computer and use it in GitHub Desktop.
Save zmonteca/c4559db1af046a47ac0172eb25a484a3 to your computer and use it in GitHub Desktop.
wp_calculate_image_sizes
<?php
function _s_silence_content_image_sizes_attr($size, $image_src)
{
if (get_page_template_slug() === 'template-full_width.php') {
//Do something here
}
if (!is_array($size) && $size == 'hero-image') {
return false;
}
}
add_filter('wp_calculate_image_sizes', '_s_silence_content_image_sizes_attr', 10 , 2);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment