Advertisement
fahimmurshed

How to change "Search ..." placeholder text

Jan 28th, 2021
1,054
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. function astra_search_form( $form ) {
  2.     $form = '<section class="search"><form role="search" method="get" id="search-form" action="' . home_url( '/' ) . '" >
  3.   <label class="screen-reader-text" for="s">' . __('',  'astra') . '</label>
  4.     <input type="search" value="' . get_search_query() . '" name="s" id="s" placeholder="Search website" />
  5.     <input type="submit" id="searchsubmit" value="'. esc_attr__('Go', 'astra') .'" />
  6.     </form></section>';
  7.     return $form;
  8. }
  9.  
  10. add_filter( 'get_search_form', 'astra_search_form' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement