我正在使用WP_query作为我的自定义帖子类型存档页面,并且查询似乎陷入了无限循环。
archive.php
<?php
$query = new WP_Query(array(
'post_type' => 'faqs',
'post_status' => 'publish',
'posts_per_page' => -1
));
while ($query->have_posts()) {
$query->the_post();
$faqs_loop = get_template_part('loop-faqs');
}
wp_reset_query();
?>
loop.php
<?php if (have_posts()): while (have_posts()) : the_post(); ?>
<div class="accordion-section">
<a class="accordion-section-title" href="#<?php the_id(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<div id="<?php the_id(); ?>" class="accordion-section-content">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; ?>
答案 0 :(得分:0)
你无法在webb中执行无限循环,只是加载到浏览器崩溃或停止前景