Created
May 14, 2022 14:36
-
-
Save 1naveengiri/f0dcd7b279db268fd386366ae9b36473 to your computer and use it in GitHub Desktop.
Shortcode for overall rating of sub rating
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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