????
| Current Path : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/topbar/ |
| Current File : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/topbar/topbar-layout.php |
<?php
/**
* Topbar layout
*
* @package Wanderfuls WordPress theme
* @subpackage Partials
* @version 3.0.0
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Classes
$classes = 'clr';
if ( tb_get_mod( 'top_bar_sticky' ) ) {
$classes .= ' tb-top-bar-sticky';
}
if ( $visibility = tb_get_mod( 'top_bar_visibility' ) ) {
$classes .= ' '. $visibility;
} ?>
<?php tb_hook_topbar_before(); ?>
<div id="top-bar-wrap" class="<?php echo $classes; ?>">
<div id="top-bar" class="clr container">
<?php
// Get content
get_template_part( 'partials/topbar/topbar-content' ); ?>
<?php
// Get social
if ( tb_get_mod( 'top_bar_social', true ) || tb_global_obj( 'top_bar_social_alt' ) ) {
get_template_part( 'partials/topbar/topbar-social' );
} ?>
</div><!-- #top-bar -->
</div><!-- #top-bar-wrap -->
<?php tb_hook_topbar_after(); ?>