Created
July 19, 2019 00:57
-
-
Save generatepress/565683b10cca65050d7fb3a006efbc29 to your computer and use it in GitHub Desktop.
Add search button with icon to the navigation search
This file contains hidden or 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
add_filter( 'generate_navigation_search_output', function() { | |
printf( | |
'<form method="get" class="search-form navigation-search" action="%1$s"> | |
<input type="search" class="search-field" value="%2$s" name="s" title="%3$s" /> | |
<input type="submit" class="search-button" value=""> | |
</form>', | |
esc_url( home_url( '/' ) ), | |
esc_attr( get_search_query() ), | |
esc_attr_x( 'Search', 'label', 'generatepress' ) | |
); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment