Thesis: Change search-box text


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /*--------------------------------------------------*/
  2. /* change search box text */
  3. /*--------------------------------------------------*/
  4.  
  5. function custom_search_text($field_value) {
  6. $field_value = 'Suchbegriff eingeben';
  7. return $field_value;
  8. }
  9.  
  10. add_filter('thesis_search_form_value', 'custom_search_text');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.