Skip to content

Instantly share code, notes, and snippets.

@rotisoft
Created October 23, 2017 09:14
Show Gist options
  • Save rotisoft/b713b635550dd74347c64c0783571ef8 to your computer and use it in GitHub Desktop.
Save rotisoft/b713b635550dd74347c64c0783571ef8 to your computer and use it in GitHub Desktop.
Disable srcset for one thumbnail
add_filter( 'wp_calculate_image_srcset_meta', '__return_null' );
echo get_the_post_thumbnail( $page->ID, 'large' );
remove_filter( 'wp_calculate_image_srcset_meta', '__return_null' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment