Yazı halinde olan logomu resim ile değiştirmek istiyorum.Nereyi düzenlemem lazım ?


Ya da

add_action( 'customize_register', 'wpex_customizer_logo' );
function wpex_customizer_logo($wp_customize) {

// General Section
$wp_customize->add_section( 'wpex_logo' , array(
'title' => __( 'Image Logo', 'wpex' ),
'priority' => 210,
) );

// Logo Image
$wp_customize->add_setting( 'wpex_logo', array(
'type' => 'theme_mod',
) );

$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'wpex_logo', array(
'label' => __('Image Logo','wpex'),
'section' => 'wpex_logo',
'settings' => 'wpex_logo',
) ) );

}