Skip to content

Instantly share code, notes, and snippets.

@cdils
Last active August 29, 2015 13:56
Show Gist options
  • Save cdils/9243447 to your computer and use it in GitHub Desktop.
Save cdils/9243447 to your computer and use it in GitHub Desktop.
Show the search bar on the home page only of the Winning Agent Pro Theme
<?php //remove opening php tag (this entire line)
// Add search widget below header
add_action( 'genesis_after_header', 'wap_search_bar' );
function wap_search_bar() {
if ( ! is_front_page() ) {
return;
}
genesis_widget_area( 'search-bar', array(
'before'=> '<div class="search-bar"><div class="wrap">',
'after' => '</div></div>',
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment