You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
737 B
25 lines
737 B
<?php
|
|
|
|
$extra_class = '';
|
|
$icon_type = $params['icon_type'];
|
|
|
|
$extra_class .= ' wd-style-' . $params['style'];
|
|
|
|
if ( $icon_type == 'custom' ) {
|
|
$extra_class .= ' wd-tools-custom-icon';
|
|
}
|
|
|
|
$extra_class .= woodmart_get_old_classes( ' woodmart-burger-icon' );
|
|
|
|
?>
|
|
<div class="wd-tools-element wd-header-mobile-nav<?php echo esc_attr( $extra_class ); ?>">
|
|
<a href="#" rel="noffollow">
|
|
<span class="wd-tools-icon<?php echo woodmart_get_old_classes( ' woodmart-burger' ); ?>">
|
|
<?php if ( $icon_type == 'custom' ): ?>
|
|
<?php echo whb_get_custom_icon( $params['custom_icon'] ); ?>
|
|
<?php endif; ?>
|
|
</span>
|
|
|
|
<span class="wd-tools-text"><?php esc_html_e( 'Menu', 'woodmart' ); ?></span>
|
|
</a>
|
|
</div><!--END wd-header-mobile-nav-->
|