array( 'value' => 'blue', 'label' => __( 'Blue (Default)', 'selecta' ) ), 'black-blue' => array( 'value' => 'black-blue', 'label' => __( 'Blue & Black', 'selecta' ) ), 'black-green' => array( 'value' => 'black-green', 'label' => __( 'Green & Black', 'selecta' ) ), 'black-red' => array( 'value' => 'black-red', 'label' => __( 'Red & Black', 'selecta' ) ), 'sea-blue' => array( 'value' => 'sea-blue', 'label' => __( 'Sea Blue', 'selecta' ) ), 'white-rose' => array( 'value' => 'white-rose', 'label' => __( 'White Rose', 'selecta' ) ), ); return $color_schemes; } // Return arrays for our Featured Slider and Latest Posts settings function selecta_featured_slider() { $theme_slider = array( 'yes' => array( 'value' => 'yes', 'label' => __( 'Yes', 'selecta' ), ), 'no' => array( 'value' => 'no', 'label' => __( 'No', 'selecta' ) ), ); return $theme_slider; } function selecta_latest_posts() { $theme_latest_posts = array( 'yes' => array( 'value' => 'yes', 'label' => __( 'Yes', 'selecta' ), ), 'no' => array( 'value' => 'no', 'label' => __( 'No', 'selecta' ) ), ); return $theme_latest_posts; } // Create the options page function selecta_theme_options_do_page() { if ( ! isset( $_REQUEST['settings-updated'] ) ) $_REQUEST['settings-updated'] = false; ?>
" . wp_get_theme()->Name . __( ' Theme Options', 'selecta' ) . ""; ?>