![]() 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 /** * Mobile search template. * * @package Apper WordPress theme */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } // Post type $post_type = 'product'; ?> <?php $is_shop = acmthemes_is_woo_shop(); if( $is_shop ) { ?> <div id="mobile-menu-search" class="clr"> <form method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>" class="mobile-searchform"> <input type="search" name="s" autocomplete="off" placeholder="<?php echo esc_attr( apply_filters( 'mobile_searchform_placeholder', esc_html__( 'Search', 'apper' ) ) ); ?>" /> <?php if ( 'any' != $post_type ) { ?> <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>"> <?php } ?> </form> </div><!-- .mobile-menu-search --> <?php } ?>