add_section( 'bigdot_logo_section' , array( 'title' => __( 'Logo', 'big-dot-2-0' ), 'priority' => 30, 'description' => 'Upload a logo to replace the default site name and description in the header', ) ); $wp_customize->add_setting( 'bigdot_logo', 'sanitize_callback' == 'esc_url_raw' ); $wp_customize->add_control('bigdot_logo', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', 'type' => 'theme_mod', )); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'bigdot_logo', array( 'label' => __( 'Logo', 'big-dot-2-0' ), 'section' => 'bigdot_logo_section', 'settings' => 'bigdot_logo', 'sanitize_callback' => 'esc_url_raw', ) ) ); } add_action( 'customize_register', 'bigdot_theme_customizer' ); ?>