'approve',
'post_status' => 'publish',
'post_type' => 'product',
'meta_query' => array(
array(
'key' => 'rating',
'value' => '5',
'compare' => '>=',
),
),
'number' => 3,
);
$comments = get_comments( $args );
foreach ( $comments as $comment ) {
$product = wc_get_product( $comment->comment_post_ID );
$real_testimonials[] = array(
'name' => $comment->comment_author,
'city' => get_comment_meta( $comment->comment_ID, 'city', true ) ?: 'ایران',
'text' => wp_strip_all_tags( $comment->comment_content ),
'stars' => intval( get_comment_meta( $comment->comment_ID, 'rating', true ) ) ?: 5,
);
}
}
// اگه نظرات واقعی نبود، از نمونهها استفاده کن
if ( empty( $real_testimonials ) ) {
$real_testimonials = array(
array(
'name' => 'زهرا کریمی',
'city' => 'تهران',
'text' => 'از وقتی عسل مطیب استفاده میکنیم، دیگه هیچ عسلی برامون قابل قبول نیست. طعم واقعی عسل رو با مطیب شناختیم.',
'stars' => 5,
),
array(
'name' => 'حسین نوری',
'city' => 'اصفهان',
'text' => 'ارده و شیرههای مطیب کیفیت استثنایی دارن. بستهبندی هم بسیار تمیز و بهداشتیه. برای صبحانه عالیه.',
'stars' => 5,
),
array(
'name' => 'فاطمه موسوی',
'city' => 'شیراز',
'text' => 'دمنوشهای گیاهی مطیب واقعاً طبیعین. برخلاف خیلی از برندها، عطر و طعم واقعی گیاهان رو حس میکنی.',
'stars' => 5,
),
);
}
foreach ( $real_testimonials as $t ) :
$initial = mb_substr( $t['name'], 0, 1 );
$stars = intval( $t['stars'] );
?>