使用WP_Query
, 有一个author参数,如下面的示例,它为您提供给ID为的用户的所有帖子1
.
$query = new WP_Query( array(
\'author\' => 1,
\'post_status\' => \'publish\',
\'posts_per_page\' => -1,
\'showposts\' => -1,
\'nopaging\' => true
) );
结果可以在循环中使用,也可以作为示例。
if ( $query->have_posts() ) {
?><ul><?php
while( $query->have_posts ) {
the_post();
?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a></li>
<?php
}
?></ul><?php
}