我想在循环中得到作者的评论。代码为
<?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();?>
此循环的链接正确。谢谢你的帮助