Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created April 13, 2016 20:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/4b3e15a7166728a64a6231e4c70da135 to your computer and use it in GitHub Desktop.
Save billerickson/4b3e15a7166728a64a6231e4c70da135 to your computer and use it in GitHub Desktop.
<?php
// The standard search form
$form = get_search_form( false );
// Let's add a hidden input field
$form = str_replace( '<input type="submit"', '<input type="hidden" name="post_type" value="video"><input type="submit"', $form );
// Display our modified form
echo $form;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment