我正在构建一个滑块,它将显示一些选定作者的最新帖子。到目前为止,我写了以下内容:
<?php
$args = array(
\'post_type\' => \'post\',
\'posts_per_page\' => \'1\',
\'author\' => $user->ID
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
?>
<div class="author-box-title">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
<?php
}
}
wp_reset_postdata();
?>
结果我什么也没得到。你能告诉我这有什么问题吗?还有,有没有更好的方法来生成作者的最新帖子?
提前感谢大家。