forked from mirror/_s
Merge pull request #207 from Automattic/post-thumbnails-off-by-default
Turn featured thumbnail support off by default.
This commit is contained in:
commit
dbddb18ccf
|
@ -60,9 +60,11 @@ function _s_setup() {
|
||||||
add_theme_support( 'automatic-feed-links' );
|
add_theme_support( 'automatic-feed-links' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable support for Post Thumbnails
|
* Enable support for Post Thumbnails on posts and pages
|
||||||
|
*
|
||||||
|
* @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
|
||||||
*/
|
*/
|
||||||
add_theme_support( 'post-thumbnails' );
|
//add_theme_support( 'post-thumbnails' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This theme uses wp_nav_menu() in one location.
|
* This theme uses wp_nav_menu() in one location.
|
||||||
|
|
Reference in New Issue