array( 'value' => 'default', 'label' => __( 'Default', 'Basically' ), ), 'black' => array( 'value' => 'black', 'label' => __( 'Black', 'Basically' ), ), 'red' => array( 'value' => 'red', 'label' => __( 'Red', 'Basically' ), ), 'grey' => array( 'value' => 'grey', 'label' => __( 'Grey', 'Basically' ), ), 'green' => array( 'value' => 'green', 'label' => __( 'Green', 'Basically' ), ), 'purple' => array( 'value' => 'purple', 'label' => __( 'Purple', 'Basically' ), ), 'brown' => array( 'value' => 'brown', 'label' => __( 'Brown', 'Basically' ), ), ); return apply_filters( 'Basically_color_schemes', $color_scheme_options ); } function Basically_get_default_theme_options() { $default_theme_options = array( 'color_scheme' => 'default', 'category_header' => 'yes', ); return apply_filters( 'Basically_default_theme_options', $default_theme_options ); } function Basically_get_theme_options() { return get_option( 'Basically_theme_options', Basically_get_default_theme_options() ); } function Basically_theme_options_render_page() { ?>