> For the complete documentation index, see [llms.txt](https://knowledgebase.ajaxsearchpro.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://knowledgebase.ajaxsearchpro.com/hooks/filters/search-results/asp_results.md).

# asp\_results

Let's you access and modify the results array before sending it to the templating system or the results page.

```php
apply_filters('asp_results', array $results, int $search_id, bool $is_ajax, array $args);
```

### Parameters

* **$results** (array) - Array containing the result objects.
* **$search\_id** (int) - Search instance ID
* **$is\_ajax** (bool) - Is the current request an ajax search
* **$args** (array) - Search arguments

### Usage

```php
add_filter( 'asp_results', 'asp_custom_link_results', 10, 1 );
function asp_custom_link_results( $results ) {
	$link = 'https://www.google.com/';	// Link to use, when not logged in
	
	// Parse through each result item
	foreach ($results as $k=>&$r) {
		/**
		 * $r (stdClass object) {
		 *      'id' -> Post or other result object (taxonomy term, user etc..) ID,
     *      'title' -> Result title
     *      'content' -> Result content
     *      'image' -> Result image URL
     *      'post_type' -> Result post type (if available)
     *      'content_type' -> Content type (pagepost, user, term, attachment etc..)
		 * }
		 **/
		if ( !is_user_logged_in() )
	  	$r->link = $link;
	}

	return $results;
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://knowledgebase.ajaxsearchpro.com/hooks/filters/search-results/asp_results.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
