Skip to content

Instantly share code, notes, and snippets.

@rccc
Last active November 21, 2015 17:46
Show Gist options
  • Select an option

  • Save rccc/d708c11864a637bbcf8a to your computer and use it in GitHub Desktop.

Select an option

Save rccc/d708c11864a637bbcf8a to your computer and use it in GitHub Desktop.

groupe de fonctionnalités que chaque thème peut ou non activer.

add_theme_support( 'post-thumbnails' ); 
if ( function_exists( 'add_theme_support' ) ) { 
    add_theme_support( 'post-thumbnails' );
    set_post_thumbnail_size( 150, 150, true ); // default Post Thumbnail dimensions (cropped)

    // additional image sizes
    // delete the next line if you do not need additional image sizes
    add_image_size( 'category-thumb', 300, 9999 ); //300 pixels wide (and unlimited height)
}

Liens

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment