You appear to be a bot. Output may be restricted
Description
Returns an array of color scheme choices registered for Twenty Fifteen.
Usage
$array = twentyfifteen_get_color_scheme_choices();
Parameters
Returns
array Array of color schemes.
Source
File name: twentyfifteen/inc/customizer.php
Lines:
1 to 10 of 10
function twentyfifteen_get_color_scheme_choices() { $color_schemes = twentyfifteen_get_color_schemes(); $color_scheme_control_options = array(); foreach ( $color_schemes as $color_scheme => $value ) { $color_scheme_control_options[ $color_scheme ] = $value['label']; } return $color_scheme_control_options; }