Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MattRyanCo/961a7a2562cf270352f0f0476510d174 to your computer and use it in GitHub Desktop.
Save MattRyanCo/961a7a2562cf270352f0f0476510d174 to your computer and use it in GitHub Desktop.
Customize Genesis Search Form
//* Customize search form input box text
//* Ref: https://my.studiopress.com/snippets/search-form/
add_filter( 'genesis_search_text', 'sp_search_text' );
function sp_search_text( $text ) {
// return esc_attr( 'Search my blog...' );
return esc_attr( 'Seach ' . get_bloginfo( $show, 'display' ));
get_permalink();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment