Skip to content

Instantly share code, notes, and snippets.

@1naveengiri
Created May 14, 2022 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1naveengiri/f0dcd7b279db268fd386366ae9b36473 to your computer and use it in GitHub Desktop.
Save 1naveengiri/f0dcd7b279db268fd386366ae9b36473 to your computer and use it in GitHub Desktop.
Shortcode for overall rating of sub rating
<?php
/**
* This code create a shortcode [buddy-overall-rating].
* It can be used on archive item template.
*/
add_shortcode( 'buddy-overall-rating', function($args){
$plugin_public = new GeoDir_Review_Rating_Manager_Public();
return $plugin_public->show_overall_multiratings();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment