Skip to content

Instantly share code, notes, and snippets.

@DigitalEssence
Created November 4, 2013 15:58
Show Gist options
  • Save DigitalEssence/7304728 to your computer and use it in GitHub Desktop.
Save DigitalEssence/7304728 to your computer and use it in GitHub Desktop.
Edit Genesis Search Button Text
<?php
//* Do NOT include the opening php tag above
add_filter( 'genesis_search_button_text', 'custom_search_button_text' );
function custom_search_button_text( $text ) {
return esc_attr('Go for it!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment