Как вывести один коментарий под постом?

Помогите пожалуйста с выводом комментария в посте , вот код

 <div class="page-home__wrapper__posts-item">
                <?php 
                    $args_brokers = array(
                        'post_type' => 'post',
                        'publish' => true,
                        'posts_per_page' => 2,

                    );
                    $recent_posts_broker = wp_get_recent_posts( $args_brokers );
                ?>  

                <?php 
                    foreach( $recent_posts_broker as $recent ){?>
                        <a href="<?php echo get_permalink($recent['ID']) ?>">
                            <?php echo get_the_post_thumbnail( $recent['ID']); ?>
                        </a>

                        <div class="main-articles__item">
                            <a href="<?php echo get_permalink($recent['ID']) ?>">
                                <?php echo $recent['post_title'] ?>
                            </a>
                            <?php get_the_author_meta()?>


                                <div class="tax-points">
                                    Our Score <?php the_field('shortlong_our_score', $recent['ID'] ); ?>
                                </div>

                        </div>                      
                <?php  

            } ?>
            </div>

Спасибо, большое


Ответы (0 шт):