This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

API SEARCH OTZEM

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #38305
    SzigetSziget
    Participant

    Hey!
    we are trying to use the search API but we see only 7 results in the API (actually there are more). What can I do?
    We use this link:
    wp-json/ajax-search-pro/v0/search?s=

    Thank you

    #38312
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    It looks like as if the posts_per_page variable is accounted for, and the results are trimmed.

    Can you try this custom code:

    add_filter("asp_query_args", "asp_query_args_change", 10, 2);
    function asp_query_args_change($args, $search_id) {
    	if ( wp_is_json_request() ) {
    		$args['posts_per_page'] = 9999;
    	}
    	return $args;
    }

    Let me know if that changes anything.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.