Skip to content

Instantly share code, notes, and snippets.

@n7studios
Created August 28, 2015 09:33
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 n7studios/a7874327ed32e025f5eb to your computer and use it in GitHub Desktop.
Save n7studios/a7874327ed32e025f5eb to your computer and use it in GitHub Desktop.
Comment Rating Field Pro - display_average_rating() example
<?php
if ( function_exists( 'display_average_rating' ) ) {
$instance = array(
'enabled' => 1,
'displaystyle' => 'grey',
'displayaverage' => 1,
'filtercomments' => 1,
'averageratingtext' => 'Average Rating:',
'displaytotalratings'=> 1,
'displaybreakdown' => 0,
'displaylink' => 1,
'id' => get_the_ID(),
);
display_average_rating( $instance );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment