Featured_Content::switch_theme PHP Method

switch_theme() public static method

Removes the quantity setting from the options array.
public static switch_theme ( ) : void
return void
        public static function switch_theme()
        {
            $option = (array) get_option('featured-content');
            if (isset($option['quantity'])) {
                unset($option['quantity']);
                update_option('featured-content', $option);
            }
        }