如何在循环中获得作者的评论?

时间:2017-03-14 作者:Nayeem Hyder Riddhi

我想在循环中得到作者的评论。代码为

<?php
$args = array(
 \'post_type\' => array(\'post\', \'page\'),
 \'posts_per_page\' => \'3\',
 \'post__not_in\' => array( $post->ID )   );
// the query
$query = new WP_Query( $args );
// The Loop   
if ( $query->have_posts() )  ?>
<?php while ( $query->have_posts() ) : $query->the_post() ; ?>


        <li class="com_list">
        <a class="post-thumbnail" href="#">

     <?php echo get_avatar( get_the_author_meta( \'ID\' ) , 32 ); ?>

       </a>
   <p><strong><a href="#">

 <?php the_author_posts_link();?>

</a> <i>says:</i></strong> author comment </p>

 </li>
在这个循环中,作者注释的代码是什么<?php the_author_posts_link();?> 此循环的链接正确。谢谢你的帮助

1 个回复
SO网友:Thilak

Nayeem Riddhi,

使用此。

<?php get_comments( array(\'author__in\' => implode(\',\',$authors_data)) ); ?>

Let me know for more information

相关推荐

Custom loop not working

因此,我创建了一个自定义循环,在该循环中,我的自定义帖子类型的帖子将出现,并且在其中,我向meta“layout\\u meta\\u box”声明了值“synosis”。自定义帖子类型正在工作,但元框值不工作。我做错了什么?<?php /* Template Name: Archief Synopsis Template Post Type: algemeen */ get_header(); $args = array( \'pos