| Server IP : 68.178.247.200 / Your IP : 216.73.217.131 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/public_html/wp-content/themes/grace-church/templates/_parts/ |
Upload File : |
<?php
// Reviews summary stars
$reviews_summary = '';
if ( !in_array($post_options['layout'], array('accordion_1', 'accordion_2', 'list')) && $post_options['reviews'] && grace_church_get_custom_option('show_reviews', null, $post_data['post_id'], $post_data['post_type'])=='yes' ) { //!!!!! Check option in the specified post
$avg_author = $post_data['post_reviews_'.(grace_church_get_theme_option('reviews_first')=='author' ? 'author' : 'users')];
if ($avg_author > 0) {
$reviews_summary .= '<div class="post_rating reviews_summary blog_reviews">'
. '<div class="criteria_summary criteria_row">' . trim(grace_church_reviews_get_summary_stars($avg_author, false, false, 5)) . '</div>'
. '</div>';
}
}
?>