Last active
August 29, 2015 13:56
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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