Skip to content

Instantly share code, notes, and snippets.

@jamiemitchell
Forked from wpspeak/functions.php
Created June 17, 2018 07:25
Show Gist options
  • Save jamiemitchell/8b23a9f296fe036430b9efb687c58070 to your computer and use it in GitHub Desktop.
Save jamiemitchell/8b23a9f296fe036430b9efb687c58070 to your computer and use it in GitHub Desktop.
Add shortcode for search form in Genesis Framework
<?php
/**
* Search Shortcode Excerpt
* @since 1.1 Genesis 404 Page plugin
* @author Bill Erickson
*/
function search_shortcode() {
return '<div class="genesis-404-search">' . get_search_form( false ) . '</div>';
}
// Add shortcode for search form in Genesis Framework
add_shortcode( 'genesis-404-search', array( $this, 'search_shortcode' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment