Seach Box...
Hi,
In regards to the search.php page, at the very top of the file there is this php block:
Code:
<?php
$searchTxt = esc_attr( appthemes_filter( get_search_query() ) );
if ( empty( $searchTxt ) || $searchTxt == __( 'What are you looking for?', APP_TD ) )
$searchTxt = '*';
?>
I have two questions about that code.
1. If I remove that code will that 'break' anything else? Ex: make other code not function as it is supposed to?
2. I want to remove that code so I can add a place holder text instead, ex: on the search input box itself. Ex: placeholder="Enter you keywords etc.." Btw, I don't see the input tag in the search php page, where would I find that input tag for the search box?
Thank you
Brian