Skip to content

Instantly share code, notes, and snippets.

@iqbalrony
Last active May 30, 2019 04:34
Show Gist options
  • Save iqbalrony/2edc6e85b95f026949d4b48802fc891b to your computer and use it in GitHub Desktop.
Save iqbalrony/2edc6e85b95f026949d4b48802fc891b to your computer and use it in GitHub Desktop.
Search form for special post type.
<!-- search for special one post type -->
<div class="search-form">
<form role="search" method="get" class="search-form mc-form bottom" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<input type="search" class="search-field" placeholder="<?php esc_html_e( 'Enter your keyword', 'text-domain' ) ?>" value="<?php echo esc_attr( get_search_query() ); ?>" name="s" />
<input type="hidden" name="post_type" value="product">
<button type="submit" class="search-submit"><span class="ti ti-search"></span></button>
</form>
</div>
<!-- search for special two or more post type -->
<div class="search-form">
<form role="search" method="get" class="search-form mc-form bottom" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<input type="search" class="search-field" placeholder="<?php esc_html_e( 'Enter your keyword', 'text-domain' ) ?>" value="<?php echo esc_attr( get_search_query() ); ?>" name="s" />
<input type="hidden" name="post_type" value="book">
<input type="hidden" name="post_type" value="movie">
<button type="submit" class="search-submit"><span class="ti ti-search"></span></button>
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment