HEX
Server: Apache
System: Linux fan.fanlow.com 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64
User: ssiacademy (1163)
PHP: 8.2.32
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/ssiacademy/public_html/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_html  = '';
$icon_type  = oceanwp_theme_icon_class();
$theme_icon = oceanwp_theme_icons();
$icon       = $theme_icon['close_x'][ $icon_type ];
$icon_class = get_theme_mod( 'ocean_mobile_menu_close_btn_icon', $icon );

if ( 'svg' === $icon_type ) {
	$icon_html = oceanwp_icon( 'close_x', false );
} else {
	$icon_html = '<i class="icon ' . esc_attr( $icon_class ) . '" aria-hidden="true"></i>';
}

$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' );

// SEO link txt.
$anchorlink_text = esc_html( oceanwp_theme_strings( 'owp-string-sidr-close-anchor', false ) );

// New accessibility settings.
$a11y_mode_tags = oceanwp_is_semantic_mobile_header_enabled();

// Close label.
$close_label = oceanwp_theme_strings( 'owp-string-close-mobile-menu', false );
$close_label = $close_label ? $close_label : esc_html__( 'Close mobile menu', 'oceanwp' );

if ( $a11y_mode_tags ) {
	$close_tag   = 'button';
	$close_attrs = sprintf(
		'type="button" class="toggle-sidr-close" aria-label="%s" aria-controls="sidr"',
		esc_attr( $close_label )
	);
} else {
	$close_tag   = 'a';
	$close_attrs = sprintf(
		'href="%s" class="toggle-sidr-close" aria-label="%s" aria-controls="sidr"',
		esc_url( ocean_get_site_name_anchors( $anchorlink_text ) ),
		esc_attr( $close_label )
	);
}
?>

<div id="sidr-close">
	<<?php echo $close_tag; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> <?php echo $close_attrs; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
		<?php echo wp_kses_post( $icon_html ); ?>
		<span class="close-text"><?php echo do_shortcode( $text ); ?></span>
	</<?php echo $close_tag; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
</div>