????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/partials/mobile/
Upload File :
Current File : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/partials/mobile/mobile-sidr-close.php

<?php
/**
 * Mobile Menu sidr close
 *
 * @package OceanWP WordPress theme
 */

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

// Get icon
$icon = get_theme_mod( 'ocean_mobile_menu_close_btn_icon', 'icon-close' );
$icon = apply_filters( 'ocean_mobile_menu_close_btn_icon', $icon );

// Text
$text = get_theme_mod( 'ocean_mobile_menu_close_btn_text' );
$text = oceanwp_tm_translation( 'ocean_mobile_menu_close_btn_text', $text );
$text = $text ? $text: esc_html__( 'Close Menu', 'oceanwp' ); ?>

<div id="sidr-close">
	<a href="#" class="toggle-sidr-close">
		<i class="icon <?php echo esc_attr( $icon ); ?>"></i><span class="close-text"><?php echo do_shortcode( $text ); ?></span>
	</a>
</div>