get_setting( 'background_color' )->default = '#f4f4f4'; $wp_customize->add_section('blogga_theme_settings', array( 'title' => 'Layout', 'priority' => 30, )); $wp_customize->add_setting( 'header_width', array( 'default' => 'full-width', 'sanitize_callback' => 'blogga_sanitize_theme_width' ) ); $wp_customize->add_control( 'header_width', array( 'type' => 'radio', 'label' => 'Header Width', 'section' => 'blogga_theme_settings', 'choices' => array( 'full-width' => 'Full Width', 'fixed-width' => 'Fixed Width', ), ) ); $wp_customize->add_setting( 'sidebar_option', array( 'default' => 'none', 'sanitize_callback' => 'blogga_sanitize_sidebar' ) ); $wp_customize->add_control( 'sidebar_option', array( 'type' => 'radio', 'label' => 'Sidebar Position', 'section' => 'blogga_theme_settings', 'choices' => array( 'left' => 'Left', 'right' => 'Right', 'none' => 'None', ), ) ); $wp_customize->add_setting( 'display_copyright', array( 'default' => true, 'sanitize_callback' => 'blogga_sanitize_checkbox' ) ); $wp_customize->add_control( 'display_copyright', array( 'type' => 'checkbox', 'label' => 'Copyright © 2016', 'section' => 'blogga_theme_settings', ) ); $wp_customize->add_setting( 'display_cyberbundle', array( 'default' => true, 'sanitize_callback' => 'blogga_sanitize_checkbox' ) ); $wp_customize->add_control( 'display_cyberbundle', array( 'type' => 'checkbox', 'label' => 'Wordpress theme created by Cyberbundle', 'section' => 'blogga_theme_settings', ) ); } function blogga_sanitize_checkbox( $input ) { if ( $input == true ) { return true; } else { return ''; } } function blogga_sanitize_sidebar( $input ) { $valid = array( 'left' => 'Left', 'right' => 'Right', 'none' => 'None', ); if ( array_key_exists( $input, $valid ) ) { return $input; } else { return ''; } } function blogga_sanitize_theme_width( $input ) { $valid = array( 'full-width' => 'Full Width', 'fixed-width' => 'Fixed Width' ); if ( array_key_exists( $input, $valid ) ) { return $input; } else { return ''; } }