# 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: 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:

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

The question should be specific, self-contained, and written in natural language.
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.
