-
-
Save brycejacobson/6287448 to your computer and use it in GitHub Desktop.
Genesis search form functions.
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 | |
//* Do NOT include the opening php tag | |
//* Customize search form input box text | |
add_filter( 'genesis_search_text', 'sp_search_text' ); | |
function sp_search_text( $text ) { | |
return esc_attr( 'Search my blog...' ); | |
} |
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 | |
//* Do NOT include the opening php tag | |
//* Customize search form label | |
add_filter( 'genesis_search_form_label', 'sp_search_form_label' ); | |
function sp_search_form_label ( $text ) { | |
return esc_attr( 'Custom Label' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment