Date Format Adjustment
User Assistant To format the date as `January 14, 2024`, you need to pass a custom format string to `date_i18n()`. Here's the corrected code: <span class="review-date"> <?php echo $review_data['date']; if (isset($options['show_date']) && $options['show_date'] == 'yes' && strtotime($review_data['date']) > 0): ?> <?php self::show_single_review_divider($divider, $review_data); ?> <span class="kk-single-review-date" itemprop="dateCreated"> <?php echo date_i18n( 'F j, Y', strtotime( esc_html($review_data['date']) […]