File "header_topbar.php"

Full Path: /home/peaktdwu/aaronacebhutan.com/wp-content/themes/astrip/template-parts/header/header_topbar.php
File size: 2.78 KB
MIME-type: text/x-php
Charset: utf-8

<?php if (class_exists('CSF')) : ?>
    <div class="topbar d-xl-flex d-none <?php echo Egns_Helpers::egns_page_option_value('page_header_menu_style') == 'header_three' ? 'pl-230' : '' ?> ">
        <div class="container-lg container-fluid d-flex justify-content-between align-items-center">
            <div class="topbar-left">
                <ul class="topbar-info-list">
                    <li>
                        <?php if (Egns_Helpers::egns_get_theme_option('header_topbar_icon_source') == 'custom_svg') { ?>
                            <img src="<?php echo Egns_Helpers::egns_get_theme_option('header_topbar_content_left_icon_one', 'url') ?>" alt="<?php esc_attr__('icon', 'astrip')  ?>">
                        <?php } else { ?>
                            <i class="<?php echo Egns_Helpers::egns_get_theme_option('header_topbar_content_left_icon_one_class'); ?>"></i>
                        <?php } ?>
                        <?php echo Egns_Helpers::egns_get_theme_option('header_topbar_content_left_text_one'); ?>
                    </li>
                    <li>
                        <?php if (Egns_Helpers::egns_get_theme_option('header_topbar_icon_source') == 'custom_svg') { ?>
                            <img src="<?php echo Egns_Helpers::egns_get_theme_option('header_topbar_content_left_icon_two', 'url') ?>" alt="<?php esc_attr__('icon', 'astrip')  ?>">
                        <?php } else { ?>
                            <i class="<?php echo Egns_Helpers::egns_get_theme_option('header_topbar_content_left_icon_two_class'); ?>"></i>
                        <?php } ?>
                        <?php echo Egns_Helpers::egns_get_theme_option('header_topbar_content_left_text_two'); ?>
                    </li>
                </ul>
            </div>
            <div class="topbar-right">
                <ul class="topbar-right-list">
                    <li><?php echo do_shortcode(Egns_Helpers::egns_get_theme_option('header_topbar_right_side_shortcode')) ?></li>
                    <li>
                        <?php Egns_Helpers::egns_get_theme_menu('top-menu', 'main-nav-wrapper', '', 'topbar-menu', 3); ?>
                    </li>
                </ul>
                <?php if (Egns_Helpers::egns_get_theme_option('header_topbar_social_enable') == true) : ?>
                    <div class="topbar-right-social_list">
                        <?php foreach ((array)Egns_Helpers::egns_get_theme_option('header_topbar_social_list') as $icon) : ?>
                            <li><a href="<?php echo esc_url($icon['header_topbar_social_link']['url']) ?>"><i class="<?php echo esc_html($icon['header_topbar_social_class']) ?>"></i></a></li>
                        <?php endforeach; ?>
                    </div>
                <?php endif; ?>
            </div>
        </div>
    </div>
<?php endif; ?>