Skip to content

Instantly share code, notes, and snippets.

@robincornett
Created July 9, 2013 00:25
Show Gist options
  • Save robincornett/5953663 to your computer and use it in GitHub Desktop.
Save robincornett/5953663 to your computer and use it in GitHub Desktop.
hook the Genesis search form anywhere (here, above the sidebar--necessary as secondary nav was also hooked above sidebar so needed this to place search above secondary nav). Genesis 2.0
<?php
//* Insert a Genesis search form above the primary sidebar widget area (in lieu of using a widget due to secondary nav or other bing placed above the sidebar) */
add_action( 'genesis_before_sidebar_widget_area', 'rgc_do_search' );
function rgc_do_search() {
echo '<aside class="widget">';
get_search_form();
echo '</aside>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment