我在woocommerce中有一个自定义选项卡,该选项卡将备用零件循环到当前产品。在某些情况下,会有大量的备件,并且产品需要很长时间才能装载。有什么聪明的方法可以只按需加载标签内容,而不是每次显示产品时都加载?选项卡的内容是一个wp-query循环。
这是代码的一部分:
<?php
foreach( $categories as $category ):
$categoryID = $category->term_id;
$categoryName = $category->name;
//Query
// $argsParts = array(
// 'post_type' => 'product',
// 'tax_query' => array(
// array(
// 'taxonomy' => 'product_cat',
// 'terms' => $categoryID,
// 'operator' => 'IN',
// )
// ),
// 'meta_query' => array(
// array(
// 'key' => '_crosssell_ids',
// 'value' => $current_post_id,
// 'compare' => 'LIKE'
// )
// )
// );
$argsParts = array(
'post_type' => 'product',
'no_found_rows' => true,
'posts_per_page' => -1,
'post__in' => $crosssells,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'terms' => $categoryID,
'operator' => 'IN',
)
),
);
$queryParts = new WP_Query($argsParts);
if($queryParts->have_posts()){
?>
<li class="g-acc-list__nav__button" id="g-acc-list__nav--<?php echo $categoryID ?>"><?php echo $categoryName ?></li>
<?php
}
endforeach;