Skip to content

Instantly share code, notes, and snippets.

@Ariflaw
Last active October 24, 2023 19:52
Show Gist options
  • Save Ariflaw/363f964f8c9446facb2c to your computer and use it in GitHub Desktop.
Save Ariflaw/363f964f8c9446facb2c to your computer and use it in GitHub Desktop.
Search Form Wordpress ( searchform.php )
<form role="search" method="get" class="search-form" action="<?php echo home_url( '/' ); ?>">
<label>
<span class="screen-reader-text"><?php echo _x( 'Search for:', 'label' ) ?></span>
<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search …', 'placeholder' ) ?>" value="<?php echo get_search_query() ?>" name="s" title="<?php echo esc_attr_x( 'Search for:', 'label' ) ?>" />
</label>
<input type="submit" class="search-submit" value="<?php echo esc_attr_x( 'Search', 'submit button' ) ?>" />
</form>
Place on searchform.php
Source: http://codex.wordpress.org/Function_Reference/get_search_form
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment