在模板页面上通过woocommerce中的自定义循环显示特色产品


19

我想在home-page.php模板上显示woocommerce商店中的6种特色产品。经过一番研究后,我发现正确的方法是通过自定义循环((我不希望使用短代码,因为我想添加其他样式类)。)我还发现woocommerce用于特色产品为“ _featured”。我将下面的代码放在一起,以显示我选择在商店中成为特色产品的任何产品,但是它不起作用...非常感谢您的帮助。

<?php

    $args = array(
        'post_type'   => 'product',
        'stock'       => 1,
        'showposts'   => 6,
        'orderby'     => 'date',
        'order'       => 'DESC' ,
        'meta_query'  => array(
            array(
                'key'     => '_featured',
                'value'   => 0,
                'compare' => '>',
                'type'    => 'numeric'
            )
        )
    );

    $loop = new WP_Query( $args );
    while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>

        <li>    
            <?php 
                if ( has_post_thumbnail( $loop->post->ID ) ) 
                    echo get_the_post_thumbnail( $loop->post->ID, 'shop_catalog' ); 
                else 
                    echo '<img src="' . woocommerce_placeholder_img_src() . '" alt="Placeholder" width="65px" height="115px" />'; 
            ?>
            <h3><?php the_title(); ?></h3>

            <?php 
                echo $product->get_price_html(); 
                woocommerce_template_loop_add_to_cart( $loop->post, $product );
            ?>    
        </li>

<?php 
    endwhile;
    wp_reset_query(); 
?>

从此答案中说明的自定义函数支持var_dump( get_meta_values( '_featured', 'product' );的函数中添加结果get_meta_values
Pieter Goosen

Answers:


17

更改您的参数,如下所示:

$meta_query   = WC()->query->get_meta_query();
$meta_query[] = array(
    'key'   => '_featured',
    'value' => 'yes'
);
$args = array(
    'post_type'   =>  'product',
    'stock'       =>  1,
    'showposts'   =>  6,
    'orderby'     =>  'date',
    'order'       =>  'DESC',
    'meta_query'  =>  $meta_query
);

如果转到wp-content / plugins / woocommerce / includes / class-wc-shortcodes.php(@ 595),则可以找到WC短代码的处理方法。


3
他们要注意的关键是“ _featured”未存储为数值。它存储为字符串“是”或“否”。OP问题中的其他所有内容都应该对我有用。
i_a

1
从WooCommerce 3.0开始,此解决方案不再起作用。请在下面查看我的更新答案。
dpruth

22

这在WooCommerce 3.0中已更改。它不仅是meta_query,而且现在包括tax_query。现在的参数是:

    $meta_query  = WC()->query->get_meta_query();
    $tax_query   = WC()->query->get_tax_query();
    $tax_query[] = array(
        'taxonomy' => 'product_visibility',
        'field'    => 'name',
        'terms'    => 'featured',
        'operator' => 'IN',
    );

    $args = array(
        'post_type'           => 'product',
        'post_status'         => 'publish',
        'ignore_sticky_posts' => 1,
        'posts_per_page'      => $atts['per_page'],
        'orderby'             => $atts['orderby'],
        'order'               => $atts['order'],
        'meta_query'          => $meta_query,
        'tax_query'           => $tax_query,
    );

参见woocommerce / includes / class-wc-shortcodes.php


1
正是我想要的!
joshkrz

同样对于Woocommerce 3.0,他们建议使用wc_placeholder_img_src代替woocommerce_placeholder_img_src
Robotnicka

6

WooCommerce 3中的特色产品循环

<ul class="products">
<?php
$args = array(
    'post_type' => 'product',
    'posts_per_page' => 12,
    'tax_query' => array(
            array(
                'taxonomy' => 'product_visibility',
                'field'    => 'name',
                'terms'    => 'featured',
            ),
        ),
    );
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) {
    while ( $loop->have_posts() ) : $loop->the_post();
        wc_get_template_part( 'content', 'product' );
    endwhile;
} else {
    echo __( 'No products found' );
}
wp_reset_postdata();
?>

5

根据WooCommerce Wiki

建立自定义WP_Queries或数据库查询(以检索产品)可能会在WooCommerce的未来版本中破坏您的代码,因为数据将移向自定义表以提高性能。

WooCommerce提倡使用wc_get_products()WC_Product_Query()代替WP_Query()get_posts()

我已经用我用来实现您想要的代码的代码写了一篇文章:https : //cfxdesign.com/create-a-custom-woocommerce-product-loop-the-right-way/


抱歉,没有看到任何书面代码,很难理解您的文章。您能提供一些编码吗?
HOY

@HOY嵌入插件已损坏;现在已修复,您可以看到代码!
cfx

谢谢,在寻找解决方案时,我提出了以下解决方案。我不确定它与您的产品有何不同,因为我无法彻底检查您的产品,但是它很短,可以帮助我进行自定义产品循环。kathyisawesome.com/woocommerce-modifying-product-query
HOY

1

我知道这已经很老了,但是我在这里共享了一个替代解决方案,我认为它也可以帮助那些达到此主题的人。

除了使用meta_queryor之外tax_query,您还可以使用wc_get_featured_product_ids()

$args = array(
    'post_type'           => 'product',
    'posts_per_page'      => 6,
    'orderby'             => 'date',
    'order'               => 'DESC',
    'post__in'            => wc_get_featured_product_ids(),
);

$query = new WP_Query( $args );

希望对您有所帮助!


1

基于:https : //github.com/woocommerce/woocommerce/wiki/wc_get_products-and-WC_Product_Query

我会尝试:

外循环:

$args = array (
'limit' => 6,
'orderby' => 'title',
'order' => 'ASC',
'category' => $club_cat,
'stock_status' => 'instock',
'featured' => true,

 );

 $products = wc_get_products( $args );

在循环:

$query = new WC_Product_Query( array(
'limit' => 6,
'orderby' => 'title',
'order' => 'ASC',
'category' => $club_cat,
'stock_status' => 'instock',
'featured' => true,
'return' => 'ids',

 ) );

 $products = $query->get_products();

0

如果你看看在数据库wp_postmeta表中,你会看到meta_key_featuredmeta_valueyesno因此,而不是价值01yesno

<?php
    $q = new WP_Query([
      'post_type'   =>  'product',
      'stock'       =>  1,
      'showposts'   =>  3,
      'orderby'     =>  'date',
      'order'       =>  'DESC',
      'meta_query'  =>  [ 
        ['key' => '_featured', 'value' => 'yes' ]
        ]
    ]);
    if ( $q->have_posts() ) :
        while ( $q->have_posts() ) : $q->the_post();
            // display product info
        endwhile; wp_reset_query();
    endif;
?>

0
<ul class="products">
    <?php
        $args = array(
            'post_type' => 'product',
            'posts_per_page' => 12,
            'tax_query' => array(
                    array(
                        'taxonomy' => 'product_visibility',
                        'field'    => 'name',
                        'terms'    => 'featured',
                    ),
                ),
            );
        $loop = new WP_Query( $args );
        if ( $loop->have_posts() ) {
            while ( $loop->have_posts() ) : $loop->the_post();
               echo '<p>'.get_the_title().'</p>';
            endwhile;
        } else {
            echo __( 'No products found' );
        }
        wp_reset_postdata();
    ?>
</ul><!--/.products-->

编辑您的答案,并添加解释:为什么这可以解决问题?
fuxia
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.