????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/topbar/
Upload File :
Current File : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/topbar/topbar-content.php

<?php
/**
 * Topbar content
 *
 * @package Wanderfuls WordPress Theme
 * @subpackage Partials
 * @version 3.0.0
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

// Get topbar content
$content = tb_global_obj( 'top_bar_content' );

// Display topbar content
if ( $content || has_nav_menu( 'topbar_menu' ) ) : ?>

    <div id="top-bar-content" class="<?php echo tb_top_bar_classes(); ?>">

        <?php
        // Get topbar menu
        get_template_part( 'partials/topbar/topbar-menu' ); ?>

        <?php
        // Check if there is content for the topbar
        if ( $content ) : ?>

            <?php
            // Display top bar content
            echo do_shortcode( $content ); ?>

        <?php endif; ?>

    </div><!-- #top-bar-content -->

<?php endif; ?>