22 March 2023

How to print rataing stars in PHP?

Print rataing stars in PHP?


<?php

        $average_reviews = round($post->average_reviews);

        if(!empty($average_reviews)){

            $i = 1;

            while($i <= 5){

                if($i <= $average_reviews){

                ?>

                <img style="" src="<?php echo theme_url();?>/assets/img/organic.png">

                <?php

                }

                else{

                    ?>

                    <img style="" src="<?php echo theme_url();?>/assets/img/2017-10-10.png">

                    <?php

                }

                $i++;

            }

            echo "(" . $average_reviews . ")"; 

        }  

?>


No comments:

Post a Comment

How to add re-captcha v3 on all Elementor forms using coding?

 Add re-captcha v3 on all Elementor forms using coding add_action('wp_footer',function(){     ?> <script src="https://www...