Sindbad~EG File Manager

Current Path : /home/dtconseimw/www.old/wp-content/themes/mesmerize/inc/header-options/content-options/
Upload File :
Current File : /home/dtconseimw/www.old/wp-content/themes/mesmerize/inc/header-options/content-options/title.php

<?php


function mesmerize_front_page_header_title_options($section, $prefix, $priority)
{
    $companion = apply_filters('mesmerize_is_companion_installed', false);


    mesmerize_add_kirki_field(array(
        'type'            => 'checkbox',
        'settings'        => 'header_content_show_title',
        'label'           => esc_html__('Show title', 'mesmerize'),
        'section'         => $section,
        'default'         => true,
        'priority'        => $priority,
        'active_callback' => apply_filters('mesmerize_header_active_callback_filter', array(), false),
    ));

    mesmerize_add_kirki_field(array(
        'type'            => 'sidebar-button-group',
        'settings'        => 'header_content_title_group',
        'label'           => esc_html__('Options', 'mesmerize'),
        'section'         => $section,
        'priority'        => $priority,
        "choices"         => array(
            "header_title",
        ),
        'active_callback' => apply_filters('mesmerize_header_active_callback_filter', array(
            array(
                'setting'  => 'header_content_show_title',
                'operator' => '==',
                'value'    => true,
            ),

        ), false),
        'in_row_with'     => array('header_content_show_title'),
    ));

    if ( ! $companion) {
        mesmerize_add_kirki_field(array(
            'type'              => 'textarea',
            'settings'          => 'header_title',
            'label'             => esc_html__('Title', 'mesmerize'),
            'section'           => $section,
            'default'           => "",
            'sanitize_callback' => 'mesmerize_wp_kses_post',
            'priority'          => $priority,
            'partial_refresh'   => array(
                'header_title' => array(
                    'selector'        => ".header-homepage .hero-title",
                    'render_callback' => function () {
                        return get_theme_mod('header_title');
                    },
                ),
            ),
        ));
    }
}

add_action("mesmerize_print_header_content", function () {
    mesmerize_print_header_title();
}, 1);


function mesmerize_print_header_title()
{
    $title = get_theme_mod('header_title', "");
    $show  = get_theme_mod('header_content_show_title', true);


    if (mesmerize_can_show_demo_content()) {
        if ($title == "") {
            $title = esc_html__('You can set this title from the customizer.', 'mesmerize');
        }
    } else {
        if ($title == "") {
            $title = get_bloginfo('description');
        }
    }

    $title = mesmerize_wp_kses_post($title);
    $title = apply_filters("mesmerize_header_title", $title);

    if ($show) {
        printf('<h1 class="hero-title">%1$s</h1>', $title);
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists