使用Wordpress LOOP页面而不是帖子?

时间:2008-10-13 02:00:51

标签: php wordpress

有没有办法在 Wordpress 中使用 THE LOOP 来加载页面而不是帖子?

我希望能够查询一组子页面,然后对其使用 THE LOOP 函数调用 - 例如the_permalink()the_title()

有办法做到这一点吗?我在query_posts()文档中没有看到任何内容。

2 个答案:

答案 0 :(得分:55)

是的,这是可能的。您可以创建一个新的WP_Query对象。做这样的事情:

query_posts(array('showposts' => <number_of_pages_to_show>, 'post_parent' => <ID of the parent page>, 'post_type' => 'page'));

while (have_posts()) { the_post();
    /* Do whatever you want to do for every page... */
}

wp_reset_query();  // Restore global post data

添加:query_posts可以使用很多其他参数。这里列出了一些但不幸的是,http://codex.wordpress.org/Template_Tags/query_posts。此处未列出至少post_parent和更重要的 post_type 。我挖掘了./wp-include/query.php的来源以了解这些内容。

答案 1 :(得分:19)

考虑到这个问题的年龄,我想为偶然发现它的人提供最新的答案。

我建议避免使用query_posts。这是我更喜欢的替代方案:

$child_pages = new WP_Query( array(
    'post_type'      => 'page', // set the post type to page
    'posts_per_page' => 10, // number of posts (pages) to show
    'post_parent'    => <ID of the parent page>, // enter the post ID of the parent page
    'no_found_rows'  => true, // no pagination necessary so improve efficiency of loop
) );

if ( $child_pages->have_posts() ) : while ( $child_pages->have_posts() ) : $child_pages->the_post();
    // Do whatever you want to do for every page. the_title(), the_permalink(), etc...
endwhile; endif;  

wp_reset_postdata();

另一种替代方法是使用pre_get_posts过滤器,但是这仅适用于这种情况,如果您需要修改主循环。当用作辅助循环时,上述示例更好。

进一步阅读:http://codex.wordpress.org/Class_Reference/WP_Query