29 lines
827 B
PHP
29 lines
827 B
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="javascript:void(0)" class="toggle-sidr-close" aria-label="<?php esc_attr_e( 'Close mobile Menu', 'oceanwp' ); ?>">
|
|
<i class="icon <?php echo esc_attr( $icon ); ?>" aria-hidden="true"></i><span class="close-text"><?php echo do_shortcode( $text ); ?></span>
|
|
</a>
|
|
</div>
|