gpt4 book ai didi

php - 从自定义商店页面上的 woocommerce 循环中删除类别

转载 作者:行者123 更新时间:2023-12-03 01:02:45 25 4
gpt4 key购买 nike

我在自定义商店页面上使用此代码进行产品循环:

 <?php
$product = new WC_Product(get_the_ID());
$params = array('posts_per_page' => 12, 'post_type' =>'product');
$wc_query = new WP_Query($params);
?>
<?php if ($wc_query->have_posts()) : ?>
<?php while ($wc_query->have_posts()) :
$wc_query->the_post(); ?>
<article class="portfolio__item portfolio__item--shop">
<figure class="blog__image-container">
<?php if ( has_post_thumbnail()) {the_post_thumbnail('thumb-front' ,array("class"=>"portfolio__image post_thumbnail"));} ?>
</figure>
<h3 class="portfolio__content-title portfolio__content-title--shop"><?php the_title(); ?></h3>
<p class="portfolio__content-text portfolio__content-text--shop"><?php $product = new WC_Product(get_the_ID()); echo $product->get_price_html(); ?></p>
<a href="?add-to-cart=<?php echo $product->id; ?>" class="portfolio__link">
<div class="portfolio__content">
<p class="portfolio__content-text">Click to buy</p>
</div>
</a>
</article>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
<p>
<?php _e( 'No Products'); ?>
</p>
<?php endif; ?>

我想从这个循环中排除一个类别。我正在尝试这段代码

add_action( 'pre_get_posts', 'remove_cat_from_shop_loop' );


function remove_cat_from_shop_loop( $q ) {


if ( ! $q->is_main_query() ) return;
if ( ! $q->is_post_type_archive() ) return;

if ( ! is_admin() && is_shop() ) {

$q->set( 'tax_query', array(array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( 'free' ), // Change it to the slug you want to hide
'operator' => 'NOT IN'
)));

}

remove_action( 'pre_get_posts', 'remove_cat_from_shop_loop' );


}

但这对我不起作用。还有一刻。当我尝试在管理面板中添加新类别时,出现未定义的错误,但刷新页面后存在新类别。我的页面 http://test.art-electrik.ru/wrap/dark/wordpress/shop/

最佳答案

由于您确实有自定义循环,因此无需使用 pre_get_posts 过滤器。只需将所需的代码添加到 WP_Query 参数中即可。如果您仍想使用该过滤器,则需要使用 parse_tax_query 过滤器。由于 pre_get_posts 触发得太晚,无法进行适当的税务查询调整。因此,您的自定义查询的参数将如下所示:

$params = array(
'posts_per_page' => 12,
'post_type' =>'product',
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( 'free' ),
'operator' => 'NOT IN'
)
)
);

$wc_query = new WP_Query( $params );

关于php - 从自定义商店页面上的 woocommerce 循环中删除类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40204768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com