Şuan kullandığım ve gayet güzel çalışan kodum:
// Müşteri Yorumları
add_shortcode('woo_reviews', 'get_woo_reviews');
function get_woo_reviews()
{
$comments = get_comments(
array(
'status' => 'approve',
'post_status' => 'publish',
'post_type' => 'product',
)
);
shuffle($comments);
$comments = array_slice( $comments, 0, 15000000 );
$html = '<div class="XXX">';
foreach( $comments as $comment ) :
$html .= 'LOOP KODLARIM';
endforeach;
$html .= '</div>';
ob_start();
echo $html;
$html = ob_get_contents();
ob_end_clean();
return $html;
}