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
May 5, 2020 at 8:34 am
#27092
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;
}