我创建了一个wordpress网站,内容至少6-7页。我使它的行为类似于使用自定义模板的单页网站,并使用以下代码固定了页面数。
$args = array(
'post_type' => 'page',
'orderby' => 'menu_order',
'order' => 'asc',
'post__in' => array(10,12,202,14,16,18,208,20) //list of page_ids
);
$page_query = new WP_Query( $args );
//echo 'Post Id='.$post->ID;
if( $page_query->have_posts() ) :
echo '<div class="pages-on-page">';
//print any general title or any header here//
while( $page_query->have_posts() ) : $page_query->the_post();
echo '<div class="page-on-page" id="page_id-' . $post->ID . '">';
$content_post = get_post($post->ID);
$content = $content_post->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
//print any output you want per page//
echo '</div>';
endwhile;
echo '</div>';
一切正常,直到我不添加新页面来显示。谁能建议我如何使其动态化,这样我就不必在数组中提供固定的页面ID号。
答案 0 :(得分:2)
要列出所有页面的ID,可以使用wp_list_pluck
,如下所示
$pages = get_pages(
array (
'parent' => 0, // replaces 'depth' => 1,
'exclude' => '3,5,11'
)
);
$ids = wp_list_pluck( $pages, 'ID' );
现在
'post__in' => $ids