Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/230.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 电子商务中的产品循环标签_Php_Wordpress_Loops_Tags_Woocommerce - Fatal编程技术网

Php 电子商务中的产品循环标签

Php 电子商务中的产品循环标签,php,wordpress,loops,tags,woocommerce,Php,Wordpress,Loops,Tags,Woocommerce,我正在尝试向我的循环中添加一个get_标记,但它似乎不起作用 <?php $args = array ( 'post_type' => 'product', 'stock' => 1, 'posts_per_page' => 3, 'product_cat' => 'kuhinja', 'orderby' => 'date','order' => 'DESC' ); $loop = new WP_Query

我正在尝试向我的循环中添加一个
get_标记
,但它似乎不起作用

<?php
            $args = array ( 'post_type' => 'product', 'stock' => 1, 'posts_per_page' => 3, 'product_cat' => 'kuhinja', 'orderby' => 'date','order' => 'DESC' );
            $loop = new WP_Query( $args );
            while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>

                    <li class="span3">    

                        <a id="id-<?php the_id(); ?>" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">

                            <?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>
                            <h3><?php the_tags() ?></h3>
                               <span class="price"><?php echo $product->get_price_html();?>/ po komadu</span>

                        </a>

                        <p class="u-kosaricu"><?php woocommerce_template_loop_add_to_cart( $loop->post, $product ); ?></p>
                    </li><!-- /span3 -->
        <?php endwhile; ?>
        <?php wp_reset_query(); ?>

  • 我做错了什么?谢谢

    嗨,试试这个

           $args = array ( 'post_type' => 'product', 'stock' => 1, 'posts_per_page' => 3, 'product_cat' => 'kuhinja', 'orderby' => 'date','order' => 'DESC' );
            $loop = new WP_Query( $args );
            while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
    
                    <li class="span3">    
    
                        <a id="id-<?php the_id(); ?>" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
    
                            <?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" />'; ?>
                            <?php 
                            $terms = get_the_terms( $post->ID, 'product_tag' ); 
                            if ( ! empty( $terms ) && ! is_wp_error( $terms ) ):
                              foreach ( $terms as $term ) :
                                $slug_name = $term->slug;
    
                              endforeach;
                            endif;  
    
    
                            ?>
                            <h3><?php the_title(); ?></h3>
                            <h3><?php echo $slug_name; ?></h3>
                               <span class="price"><?php echo $product->get_price_html();?>/ po komadu</span>
    
                        </a>
    
                        <p class="u-kosaricu"><?php woocommerce_template_loop_add_to_cart( $loop->post, $product ); ?></p>
                    </li><!-- /span3 -->
        <?php endwhile; ?>
        <?php wp_reset_query(); ?>
    
    $args=array('post_-type'=>'产品','stock'=>1,'posts_-per-u-page'=>3,'product_-cat'=>'kuhinja','orderby'=>'日期','order'=>'描述');
    $loop=新的WP_查询($args);
    而($loop->have_posts()):$loop->the_post();全球$product;?>