You appear to be a bot. Output may be restricted
Description
Retrieves an array of color scheme choices registered for Twenty Sixteen.
Create your own twentysixteen_get_color_scheme_choices() function to override in a child theme.
Usage
$array = twentysixteen_get_color_scheme_choices();
Parameters
Returns
array Array of color schemes.
Source
File name: twentysixteen/inc/customizer.php
Lines:
1 to 10 of 10
function twentysixteen_get_color_scheme_choices() { $color_schemes = twentysixteen_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; }