单页上带有缩略图的产品标签问题

时间:2019-04-21 21:16:00

标签: wordpress woocommerce

我有此代码,可在网格上订购所有产品标签。

但是缩略图是代码的img ...我喜欢为每个产品标签添加一个特定的img。

我该怎么做?

()

global $ post;                 $ thumbnail =“”;             // echo“

”。 $ thePostID = $ post-> post_title。 “

”;

<div class="content-area">
<div class="container">
<div class="product-wrap">
    <div class="row">
        <ul class="products woogrid col-xs-product-2 col-sm-product-3 col-md-product-3 col-lg-product-6 grid-layout">
            <?php $terms = get_terms(array('taxonomy' => 'product_tag', 'hide_empty' => false)); ?>
            <?php foreach ( $terms as $term ) { 
                $args = array( 
            'post_type'      => 'product', 
            'posts_per_page' => 1,
            'meta_key' => 'total_sales',
            'orderby' => 'meta_value_num',              
            'product_tag'    => $term->name 
            );

// Create the new query
$loop = new WP_Query( $args );

// Get products number
$product_count = $loop->post_count;
            while ( $loop->have_posts() ) : $loop->the_post(); global $product;

0 个答案:

没有答案