true,
'tablet' => true,
'mobile' => false,
])
);
ob_start();
?>
'header_top_bar',
'depth' => 1,
'container' => false,
'menu_id' => 'header-top-bar-menu',
'menu_class' => 'header-top-bar-menu menu',
'fallback_cb' => 'blocksy_link_to_menu_editor',
]
);
$output = ob_get_clean();
}
if ( $kind === 'custom_text' ) {
$output = '' . get_theme_mod( 'header_top_bar_section_' . $number . '_text', 'Sample text' ) . '
';
}
if ( $kind === 'social_icons' ) {
$output = blocksy_social_icons(
get_theme_mod('header_top_bar_socials_' . $number, [
[
'id' => 'facebook',
'enabled' => true,
],
[
'id' => 'twitter',
'enabled' => true,
],
[
'id' => 'gplus',
'enabled' => true,
],
])
);
}
return '';
}