Skip to content

Instantly share code, notes, and snippets.

@curiouscrusher
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save curiouscrusher/7acabe877706303fe3c1 to your computer and use it in GitHub Desktop.
Save curiouscrusher/7acabe877706303fe3c1 to your computer and use it in GitHub Desktop.
A search box to show results only from a specified category in Wordpress
<?php $category_id = get_cat_ID('Your Category'); ?>
<form id="yourformid" method="get" action="<?php bloginfo('url'); ?>">
<input type="text" name="s" id="s" size="20" placeholder="Search" />
<input type="hidden" name="cat" value="<?php echo $category_id; ?>" />
<input type="submit" value="Search" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment