【发布时间】:2015-05-20 20:15:08
【问题描述】:
我正在构建一个单页 WordPress 模板。我创建了一个简单的循环,它会拉出所有页面并在同一页面上连续显示每个页面。它显示每个页面的内容,但不应用已附加到页面的模板。 这是循环...
$args = array(
'post_type' => 'page',
'order' => 'ASC'
);
$the_query = new WP_Query( $args );
?>
<?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
【问题讨论】: