????
| Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/togglebar/ |
| Current File : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/togglebar/togglebar-button.php |
<?php
/**
* Togglebar button output
*
* @package Wanderfuls WordPress theme
* @subpackage Partials
* @version 3.0.0
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$icon = tb_get_mod( 'toggle_bar_button_icon', 'plus' );
$icon = apply_filters( 'tb_togglebar_icon_class', 'fa fa-'. $icon );
$active_icon = tb_get_mod( 'toggle_bar_button_icon_active', 'minus');
$active_icon = apply_filters( 'tb_togglebar_icon_active_class', 'fa fa-'. $active_icon ); ?>
<a href="#" class="toggle-bar-btn fade-toggle open-togglebar <?php echo tb_get_mod( 'toggle_bar_visibility' ); ?>" data-icon="<?php echo $icon; ?>" data-icon-hover="<?php echo $active_icon; ?>">
<span class="fa <?php echo $icon; ?>"></span>
</a>