array( 'value' => 'light', 'label' => __( 'Light', 'pilcrow' ) ), 'dark' => array( 'value' => 'dark', 'label' => __( 'Dark', 'pilcrow' ) ), 'red' => array( 'value' => 'red', 'label' => __( 'Red', 'pilcrow' ) ), 'brown' => array( 'value' => 'brown', 'label' => __( 'Brown', 'pilcrow' ) ), ); return $color_schemes; } /** * Return array for our layouts */ function pilcrow_layouts() { $theme_layouts = array( 'content-sidebar' => array( 'value' => 'content-sidebar', 'label' => __( 'Content-Sidebar', 'pilcrow' ), ), 'sidebar-content' => array( 'value' => 'sidebar-content', 'label' => __( 'Sidebar-Content', 'pilcrow' ) ), 'content-sidebar-sidebar' => array( 'value' => 'content-sidebar-sidebar', 'label' => __( 'Content-Sidebar-Sidebar', 'pilcrow' ) ), 'sidebar-sidebar-content' => array( 'value' => 'sidebar-sidebar-content', 'label' => __( 'Sidebar-Sidebar-Content', 'pilcrow' ) ), 'sidebar-content-sidebar' => array( 'value' => 'sidebar-content-sidebar', 'label' => __( 'Sidebar-Content-Sidebar', 'pilcrow' ) ), 'no-sidebar' => array( 'value' => 'no-sidebar', 'label' => __( 'Full-Width, No Sidebar', 'pilcrow' ) ), ); return $theme_layouts; } /** * Create the options page */ function pilcrow_theme_options_do_page() { $options = pilcrow_get_theme_options(); ?>