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

Reply To: Add Star Rating to Search Results

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Add Star Rating to Search Results Reply To: Add Star Rating to Search Results

#27092
Ernest MarcinkoErnest Marcinko
Keymaster

Thank you very much, that actually helps a lot, I have found a usable shrotcode.

Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!

add_filter( 'asp_results', 'asp_filter_posts_add_rating', 10, 1 );
function asp_filter_posts_add_rating( $results ) {
	foreach ($results as $k => &$r ) {
		if ( isset($r->post_type) )
			$r->content = "[ratemypost id='".$r->id."']" . '<br>' . $r->content;
	}
	return $results;
}