diff --git a/src/wp-content/themes/twentyfourteen/content-featured-post.php b/src/wp-content/themes/twentyfourteen/content-featured-post.php index 34747dcc74..b838b33208 100644 --- a/src/wp-content/themes/twentyfourteen/content-featured-post.php +++ b/src/wp-content/themes/twentyfourteen/content-featured-post.php @@ -13,9 +13,9 @@ diff --git a/src/wp-content/themes/twentyfourteen/functions.php b/src/wp-content/themes/twentyfourteen/functions.php index d485918d80..50efd1b264 100644 --- a/src/wp-content/themes/twentyfourteen/functions.php +++ b/src/wp-content/themes/twentyfourteen/functions.php @@ -66,8 +66,8 @@ function twentyfourteen_setup() { // Enable support for Post Thumbnails, and declare two sizes. add_theme_support( 'post-thumbnails' ); - add_image_size( 'post-thumbnail-full-width', 1038, 576, true ); - add_image_size( 'post-thumbnail', 672, 372, true ); + set_post_thumbnail_size( 672, 372, true ); + add_image_size( 'twentyfourteen-full-width', 1038, 576, true ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( diff --git a/src/wp-content/themes/twentyfourteen/inc/template-tags.php b/src/wp-content/themes/twentyfourteen/inc/template-tags.php index e93b927dab..ed9c017770 100644 --- a/src/wp-content/themes/twentyfourteen/inc/template-tags.php +++ b/src/wp-content/themes/twentyfourteen/inc/template-tags.php @@ -174,9 +174,9 @@ function twentyfourteen_post_thumbnail() {