特定用户的页面列表 时间:2018-11-08 作者:User 如何获取特定用户的页面列表?并在WordPress页面中显示它们。说我有page1 , page2 , page3 , page4 创建人User1 .如何在这样的页面中列出它们:创建时间:2018年1月1日-上午11:12 1 个回复 最合适的回答,由SO网友:User 整理而成 我已经找到了做这件事的方法。代码如下:$author_query = array(\'posts_per_page\' => \'-1\',\'author\' => 1,\'post_type\' => \'PAGE\'); $author_posts = new WP_Query($author_query); while($author_posts->have_posts()) : $author_posts->the_post(); ?> ■ <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a> <br /> <?php endwhile; 更多信息:see here 结束 文章导航