html - How to make searchbox actually search -
hi cant searchbox search wordpress site original css - https://codepen.io/jackrugile/pen/abeii
<form method="get" id="searchform" action="http://www.example.com/"> <input type="search" placeholder="search | here"> <button>search</button> </form>
to search form "submit", need submit button/input. however - not "search wordpress site" automatically, depending on being searched need either:
process search on server
write script handles capturing search request, querying database, , returning results of search user.
process search client side
write script handles capturing search request, , use javascript check webpage matching results.
normally wordpress sites have search functionality included themes.
<form method="get" id="searchform" action="http://www.example.com/"> <input type="search" name="search" placeholder="search | here"> <input type="submit" name="submit" value="search"> </form>
Comments
Post a Comment