I want to create a simple star rating system based on the number displayed.
I have 1, 1.5, 2, 2.5, 3, 3.5 4, 4.5 and 5 where i have a full star and a half star.
I use the following code to display the number but i want to replace the number with stars.
<?php if ( function_exists( 'the_field' ) ) {
$value = get_field( "rating" );
echo $value; }
<?