![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/walla3t.corals.io/wp-content/themes/apper/partials/mobile/ |
<?php /** * Search for the full screen mobile style. * * @package Apper WordPress theme */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } if ( 'fullscreen' != acmthemes_mobile_menu_style() ) { return; } // Post type $post_type = 'any'; ?> <div id="mobile-search" class="clr"> <form method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>" class="header-searchform"> <input type="search" name="s" value="" autocomplete="off" /> <?php // If the headerSearchForm script is not disable if ( ACMTHEMES_EXTRA_ACTIVE && class_exists( 'Ocean_Extra_Scripts_Panel' ) && Ocean_Extra_Scripts_Panel::get_setting( 'oe_headerSearchForm_script' ) ) { ?> <label><?php esc_html_e( 'Type your search', 'apper' ); ?><span><i></i><i></i><i></i></span></label> <?php } ?> <?php if ( 'any' != $post_type ) { ?> <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>"> <?php } ?> </form> </div>