add_filter( 'asp_comment_results', 'asp_comment_result_filter', 10, 3 );
function asp_comment_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) {
* 'title' -> Result title
* 'content' -> Result content
* 'post_type' -> Post Type
* 'content_type' -> Content type (pagepost, user, term, attachment etc..)
if ( !is_user_logged_in() )