<input type="text" placeholder="Search here ..."/>
function wpforo_search_form( $html ) {
$html = str_replace( 'placeholder="Search ', 'placeholder="Press ENTER to search ', $html );
return $html;
}
add_filter( 'get_search_form', 'wpforo_search_form' );