HEX
Server: Apache
System: Linux server-634962.emtiyz.com 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: codo66ho (1003)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/codo66ho/www/wp-content/themes/autodeal/inc/customizer/typography/footer.php
<?php 
// Footer
$wp_customize->add_setting(
    'typography_footer',
    array(
        'default' => themesflat_customize_default('typography_footer'),
        'sanitize_callback' => 'esc_html',
    )
);
$wp_customize->add_control( new themesflat_Typography($wp_customize,
    'typography_footer',
    array(
        'label' => esc_html__( 'Font name/style/sets', 'autodeal' ),
        'section' => 'section_typo_footer',
        'type' => 'typography',
        'fields' => array('family','style','size','line_height'),
        'priority' => 1
    ))
);

// Footer text color
$wp_customize->add_setting(
    'footer_text_color',
    array(
        'default'           => themesflat_customize_default('footer_text_color'),
        'sanitize_callback' => 'esc_attr',
    )
);
$wp_customize->add_control(
    new themesflat_ColorOverlay(
        $wp_customize,
        'footer_text_color',
        array(
            'label'         => esc_html__('Color', 'autodeal'),
            'section'       => 'section_typo_footer',
            'settings'      => 'footer_text_color',
            'priority'      => 14
        )
    )
); 

// Footer text color Hover
$wp_customize->add_setting(
    'footer_text_color_hover',
    array(
        'default'           => themesflat_customize_default('footer_text_color_hover'),
        'sanitize_callback' => 'esc_attr',
    )
);
$wp_customize->add_control(
    new themesflat_ColorOverlay(
        $wp_customize,
        'footer_text_color_hover',
        array(
            'label'         => esc_html__('Color Hover', 'autodeal'),
            'section'       => 'section_typo_footer',
            'settings'      => 'footer_text_color_hover',
            'priority'      => 15
        )
    )
);