Make WordPress Core

Ticket #26732: 26732.patch

File 26732.patch, 961 bytes (added by Chouby, 11 years ago)
  • wp-content/themes/twentyfourteen/inc/featured-content.php

     
    9191                add_action( 'customize_controls_enqueue_scripts', array( __CLASS__, 'enqueue_scripts'    )    );
    9292                add_action( 'pre_get_posts',                      array( __CLASS__, 'pre_get_posts'      )    );
    9393                add_action( 'wp_loaded',                          array( __CLASS__, 'wp_loaded'          )    );
     94                add_action( 'after_switch_theme',                 array( __CLASS__, 'after_switch_theme' )    );
    9495        }
    9596
    9697        /**
     
    557558                return $quantity;
    558559        }
    559560
     561        public static function after_switch_theme() {
     562                add_option( 'featured-content', self::validate_settings( self::get_setting() ) );
     563        }
     564
    560565} // Featured_Content
    561566
    562567Featured_Content::setup();