我有一个关于WordPress的问题,我在循环中有一个循环但是一个循环使用了分页页面。我不希望其他循环被分页。
这是我的循环,无需获取分页:
<?php
while ( have_posts() ) : the_post();
$terms = get_the_terms( $post->ID, 'product_cat' );
foreach ($terms as $term) {
if(!isset($product_cat[$term->term_id])){
$product_cat[$term->term_id] = array(
'name'=>$term->name,
'slug' => $term->slug,
'id' => $term->term_id,
'count' => $term->count,
);
}
}
endwhile;
?>
我不知道从哪里开始,我可以把结果:
global $wp_query;
var_dump($wp_query->query_vars);
如果需要的话。
这是显示结果的地方:
<section id="woocommerce_product_categories-2" class="widget woocommerce widget_product_categories">
<select name='product_cat' class='dropdown_product_cat'>
<option id="" value="">Selecteer een categorie</option>
<?php
foreach ($product_cat as $cat) {
?>
<option class="level-0" value="<?php echo $cat['slug'];?>">
<?php echo $cat['name'].' ('.$cat['count'].')'; ?>
</option>
<?php } ?>
</select>
</section>
你能救我一下吗?