"Özelleştir > Header > Logo" kısmında seçili logonun genişlik ve yükseklik değerlerini <img içerisine width="***" height="***" olarak nasıl yazdırabilirim? Bu mümkün mü?

Logonun PHP kodları:
<img src="<?php echo esc_url( get_theme_mod( 'dmtheme_logo' ) ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
Logonun panel kodları:
    $wp_customize->add_setting( 'dmtheme_logo',
        array(
            'default' => '',
            'sanitize_callback' => 'esc_url_raw',
        ));
    $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'dmtheme_logo', 
        array(
            'label'    => __('Logo','laura'),
            'section'  => 'io_header_settings',
            'settings' => 'dmtheme_logo',
            'description' => __('Upload a logo to replace the default site name and description in the header.','laura'),
        )));