1
I have a simple search field below, which when used returns with a link similar to:meusite.com/search?q=minhabusca
. I need him to come back like this:meusite.com/search?q=minhabusca&by-date=true
, so that posts are always shown sorted by dates. How can I do?
<form action='/search' method='get'>
<input autocomplete='off' name='q' placeholder=' O que procura?' size='40' type='text'/>
<button type='submit'>buscar</button>
</form>