通过父母子页面循环 - wordpress

时间:2015-01-28 12:07:41

标签: php wordpress for-loop while-loop parent-child

是否可以在Wordpress中循环播放特定的父母?

目前我已经调查过:

$post->post_parent == '2'

但更多的是if语句条件。 我也试过以下,但我需要一个特定的父母孩子。

while(have_posts()) : the_post();

以下文章帮助了我: https://wordpress.org/support/topic/displaying-wp_list_pages-and-custom-fields

1 个答案:

答案 0 :(得分:0)

您可以使用自定义查询:

$the_query = new WP_Query(array(
    'post_parent' => 2
));

while ($the_query->have_posts())
{
    $the_query->the_post();
    echo get_the_title();
}

wp_reset_postdata();