我试图通过WP\\u查询author来显示自定义帖子列表。php如下所示:
<?php $args = array( \'post_type\' => \'post\', \'author\' => \'get_queried_object_id()\', \'posts_per_page\' => 9 );
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<figure><a href="<?php the_permalink(); ?>"><img src="<?php if ( has_post_thumbnail() ) : the_post_thumbnail(); endif; ?>" alt="<?php the_title(); ?>"></a></figure>
<h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
<?php endwhile; wp_reset_postdata(); ?>
<?php else : ?>
<p><?php _e( \'No posts by this author\' ); ?></p>
<?php endif; ?>
出于某种原因,它提供了所有作者的帖子。我尝试了不同的“author”数组元素组合,但没有遇到运气或其他一些错误/问题(例如仅显示一篇文章)。
请帮助解决此问题。