Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Issue with Search Results for custom search template › Reply To: Issue with Search Results for custom search template
June 12, 2024 at 9:24 am
#48457
Keymaster
All you need to do is loop through the items, no need for any custom code in the search.php file, just the default loop:
while ( have_posts() ) {
the_post();
// post layout here
}