Skip to content

Instantly share code, notes, and snippets.

@mustardBees
Created November 21, 2012 16:42
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 mustardBees/4125940 to your computer and use it in GitHub Desktop.
Save mustardBees/4125940 to your computer and use it in GitHub Desktop.
Prevent large images from breaking your WordPress theme
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( $content_width, 1024, false );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment