Index: wp-content/themes/twentyfourteen/inc/featured-content.php
===================================================================
--- wp-content/themes/twentyfourteen/inc/featured-content.php	(révision 26758)
+++ wp-content/themes/twentyfourteen/inc/featured-content.php	(copie de travail)
@@ -91,6 +91,7 @@
 		add_action( 'customize_controls_enqueue_scripts', array( __CLASS__, 'enqueue_scripts'    )    );
 		add_action( 'pre_get_posts',                      array( __CLASS__, 'pre_get_posts'      )    );
 		add_action( 'wp_loaded',                          array( __CLASS__, 'wp_loaded'          )    );
+		add_action( 'after_switch_theme',                 array( __CLASS__, 'after_switch_theme' )    );
 	}

 	/**
@@ -557,6 +558,10 @@
 		return $quantity;
 	}

+	public static function after_switch_theme() {
+		add_option( 'featured-content', self::validate_settings( self::get_setting() ) );
+	}
+
 } // Featured_Content

 Featured_Content::setup();
