Skip to content

Instantly share code, notes, and snippets.

@juanfra
Created February 25, 2016 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanfra/59c2cc96687a5192739a to your computer and use it in GitHub Desktop.
Save juanfra/59c2cc96687a5192739a to your computer and use it in GitHub Desktop.
Modify the "Live Search" label.
<?php
//* Do NOT include the opening php tag
// Add your own "Live Search" label
function nice_livesearch_label_custom( $label ) {
$label = __( 'What are you looking for?', 'your-text-domain' );
return $label;
}
add_filter( 'nice_livesearch_label', 'nice_livesearch_label_custom' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment