php – 将URL查询参数添加到WP_Query

我正在为我的WooCommerce商店实施产品过滤器.我想根据一些属性过滤产品,例如颜色,可以从URL查询参数中检索.例如,如果路径为/ product-category / clothing /?filter_color = 16,则仅显示颜色ID = 16的产品.

现在,当我从YITH WooCommerce Ajax产品过滤器插件添加小部件时,此功能似乎可用.但是,我不想使用此插件,因为它与其他功能不一致,并且希望实现我自己的功能.但我无法找到YITH如何实现这一目标.

我想让这个主循环和我的自定义循环工作.
通过主循环我指的是:

<?php while ( have_posts() ) : the_post(); ?>
    <?php wc_get_template_part( 'content', 'product' ); ?>
<?php endwhile; // end of the loop. ?>

我的自定义循环:

                $args = array(
                    'post_type' => 'product',
                    'posts_per_page' => 12,
                    'product_cat' => $category->slug,
                    'orderby' => 'menu_order',
                    'order' => 'ASC'
                    );
                $loop = new WP_Query( $args );
                if ( $loop->have_posts() ) { ...

最佳答案 您可以检查查询,检索颜色的值,检查它们是否匹配,如果匹配,则显示产品.看一下:

<?php while ( have_posts() ) : the_post(); ?>
    <?php 
    if(isset($_GET['filter_color']) //check if the filter color is set
    {
        $color=$_GET['filter_color']; 
        $productColor = get_the_terms($product->ID,'pa_color');

        if ($color == $productColor) //if the filter color matches with the color of the prodct
            wc_get_template_part( 'content', 'product' ); //then show the product
    }

    ?>
<?php endwhile; // end of the loop. ?>

相同的方法适用于您的自定义循环.

点赞