Hi Ernest, I am using do_action(‘asp_after_search’, $search_phrase, $results_assoc_array); to retrieve the list of search results to save to a cookie to allow a user to navigate between the CPT item pages generated by the search.
Surprisingly $results_assoc_array is only returning the first page of results. It is not returning the full list of results as implied by the defintion. My page size is set to 20 and I only get the first 20 out of the 499 results. If I navigate to the next page of results, the value is updated with the next 20 shown on that page.
How can I retrieve the full list of results after a search?