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/page-title.php
<?php 
$wp_customize->add_setting('themesflat_options[info]', array(
        'type'              => 'info_control',
        'capability'        => 'edit_theme_options',
        'sanitize_callback' => 'esc_attr',            
    )
);
$wp_customize->add_control( new themesflat_Info( $wp_customize, 'typography-page-title', array(
    'label' => esc_html__('Page Title', 'autodeal'),
    'section' => 'section_typo_page_title',
    'settings' => 'themesflat_options[info]',
    'priority' => 1
    ) )
);
// Page Title Font
$wp_customize->add_setting(
    'typography_page_title',
    array(
        'default' => themesflat_customize_default('typography_page_title'),
        'sanitize_callback' => 'esc_html',
    )
);
$wp_customize->add_control( new themesflat_Typography($wp_customize,
    'typography_page_title',
    array(
        'label' => esc_html__( 'Font name/style/sets', 'autodeal' ),
        'section' => 'section_typo_page_title',
        'type' => 'typography',
        'fields' => array('family','style','size','line_height'),
        'priority' => 2
    ))
);
// Page Title Color
$wp_customize->add_setting(
    'page_title_text_color',
    array(
        'default'           => themesflat_customize_default('page_title_text_color'),
        'sanitize_callback' => 'esc_attr',
    )
);
$wp_customize->add_control(
    new themesflat_ColorOverlay(
        $wp_customize,
        'page_title_text_color',
        array(
            'label'         => esc_html__('Heading Text Color', 'autodeal'),
            'section'       => 'section_typo_page_title',
            'priority'      => 6
        )
    )
);

// Breadcrumb Font
$wp_customize->add_setting('themesflat_options[info]', array(
        'type'              => 'info_control',
        'capability'        => 'edit_theme_options',
        'sanitize_callback' => 'esc_attr',            
    )
);
$wp_customize->add_control( new themesflat_Info( $wp_customize, 'typography-breadcrumb', array(
    'label' => esc_html__('Breadcrumb', 'autodeal'),
    'section' => 'section_typo_page_title',
    'settings' => 'themesflat_options[info]',
    'priority' => 20
    ) )
);
$wp_customize->add_setting(
    'typography_breadcrumb',
    array(
        'default' => themesflat_customize_default('typography_breadcrumb'),
        'sanitize_callback' => 'esc_html',
    )
);
$wp_customize->add_control( new themesflat_Typography($wp_customize,
    'typography_breadcrumb',
    array(
        'label' => esc_html__( 'Font name/style/sets', 'autodeal' ),
        'section' => 'section_typo_page_title',
        'type' => 'typography',
        'fields' => array('family','style','size','line_height'),
        'priority' => 21
    ))
);
// Breadcrumb
$wp_customize->add_setting(
    'breadcrumb_color',
    array(
        'default'           => themesflat_customize_default('breadcrumb_color'),
        'sanitize_callback' => 'esc_attr',
    )
);
$wp_customize->add_control(
    new themesflat_ColorOverlay(
        $wp_customize,
        'breadcrumb_color',
        array(
            'label'         => esc_html__('Text Color', 'autodeal'),
            'section'       => 'section_typo_page_title',
            'priority'      => 22
        )
    )
);