How do I add a search bar to my header?

Just add to your theme this code:

<?php get_search_form(); ?>

This code will echoing search form so place it everywhere where you want to have the search form.

Further you need to have search.php file in your theme which will show the search results. You can use ordinary WP loop in the file.

Leave a Comment