# asp\_buddyp\_results

```php
apply_filters('asp_buddyp_results', $results, $search_id, $args);
```

### Parameters

* **$results** (array) - Array containing the result objects.
* **$search\_id** (int) - Search instance ID
* **$args** (array) - Search arguments

### Usage

```php
add_filter( 'asp_buddyp_results', 'asp_buddypress_result_filter', 10, 3 );
function asp_buddypress_result_filter( $results, $search_id, $args ) {
	$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' -> Buddypress item ID,
         *      'title' -> Result title
         *      'content' -> Result content
         *      '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_buddyp_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.
