我面临页面模板内循环的问题。这是代码。
<?php
/* Template Name: Blog-Template */
get_header();
$args = [
\'post_type\' => \'post\',
\'posts_per_page\' => 1,
];
$queryP = new WP_Query( $args );
if ($queryP->have_posts()) {
while ( $queryP->have_posts() ) : $queryP->the_post();
?>
<article>
<?php
the_title( \'<h1>\', \'</h1>\' );
the_excerpt();
?>
</article>
<?php
endwhile;
}
get_footer();
如果我在设置中将此页面设置为博客页面,则不会发生任何问题。但当我为此模板创建自定义循环时,它不起作用。它不显示任何内容,只显示页眉和页脚。