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/header/search-replace.php
<?php
/**
 * Site header search header replace
 *
 * @package OceanWP WordPress theme
 */

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

// Search attributes.
$item_search_attrs = apply_filters( 'oceanwp_attrs_search_bar', '' );

// Post type.
$search_post_type = get_theme_mod( 'ocean_menu_search_source', 'any' );

// Generate unique form ID.
$ocean_sf_id = oceanwp_unique_id( 'ocean-search-header-replace-' );

// New accessibility settings.
$a11y_mode_tags    = oceanwp_is_accessibility_feature_enabled( 'ocean_accessibility_header_search_tags' );
$display_label     = oceanwp_is_accessibility_feature_enabled( 'ocean_display_header_search_form_label' );
$custom_label_text = get_theme_mod( 'ocean_custom_header_search_form_label', __( 'Search this website', 'oceanwp' ) );

// Aria labels, screen reader & placeholder text.
$form_aria_label  = oceanwp_theme_strings( 'owp-string-search-form-label', false );
$input_aria_label = oceanwp_theme_strings( 'owp-string-mobile-submit-search', false );
$form_close_scrd  = oceanwp_theme_strings( 'owp-string-esc-close-notice', false );
$close_form_label = oceanwp_theme_strings( 'owp-string-close-search-form', false );
$form_placeholder = oceanwp_theme_strings( 'owp-string-header-replace-search-text', false );

// Fallback to default theme string if custom text is empty.
$label_text = ! empty( $custom_label_text ) ? $custom_label_text : $form_aria_label;

// Search form aria attributes.
$form_aria_label_attr       = '';
$form_input_aria_label_attr = '';

if ( ! $display_label ) {
    $form_aria_label_attr       = sprintf( 'aria-label="%s"', esc_attr( $label_text ) );
    $form_input_aria_label_attr = sprintf( 'aria-label="%s"', esc_attr( $input_aria_label ) );
}

// Setup the ESC description ID.
$desc_id = $ocean_sf_id . '-desc';

// HTML element for the close button.
if ( $a11y_mode_tags ) {
    $close_tag   = 'button';
    $close_attrs = 'type="button" class="button-close searchform-header-replace-close"';
} else {
    $close_tag   = 'span';
    $close_attrs = '';
}

?>

<div id="searchform-header-replace" class="header-searchform-wrap clr" <?php echo $item_search_attrs; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
    <form <?php echo $form_aria_label_attr; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> role="search" method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>" class="header-searchform">

        <?php if ( $display_label ) : ?>
            <label for="<?php echo esc_attr( $ocean_sf_id ); ?>" class="header-replace header-search-visible-label">
                <?php echo esc_html( $label_text ); ?>
            </label>
        <?php else : ?>
            <span class="screen-reader-text">
                <?php echo esc_html( $label_text ); ?>
            </span>
        <?php endif; ?>

        <input type="search" id="<?php echo esc_attr( $ocean_sf_id ); ?>" name="s" autocomplete="off" value="" placeholder="<?php echo esc_attr( $form_placeholder ); ?>" <?php echo $form_input_aria_label_attr; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> aria-describedby="<?php echo esc_attr( $desc_id ); ?>" />

        <?php if ( 'any' !== $search_post_type ) : ?>
            <input type="hidden" name="post_type" value="<?php echo esc_attr( $search_post_type ); ?>">
        <?php endif; ?>
        <?php do_action( 'wpml_add_language_form_field' ); ?>

        <span id="<?php echo esc_attr( $desc_id ); ?>" class="screen-reader-text">
            <?php echo esc_html( $form_close_scrd ); ?>
        </span>

    </form>

    <<?php echo $close_tag; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> id="searchform-header-replace-close" <?php echo $close_attrs; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> aria-label="<?php echo esc_attr( $close_form_label ); ?>">
        <?php oceanwp_icon( 'close' ); ?>
    </<?php echo $close_tag; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>

</div><!-- #searchform-header-replace -->