在网上进行了长时间的递归搜索后,我找不到符合我需求的解决方案。
我需要在主页上显示产品名称和价格,以及我已在所有产品中设置的一些自定义属性。让我们说'年''和'作者'。
找到的所有代码段仅与单个产品或商店页面相关,无论是主页(或任何其他页面)都没有。 也尝试使用woocommerce短代码,但它们不适用于此目的。
我已经使用过: [recent_products per_page =" 6"列=" 6"的OrderBy ="一年"为了=#&34;降序"] 显示最近订购的产品"年" att(我找到了一个片段来添加' orderby' custom att)。
任何帮助都将非常感激。
答案 0 :(得分:0)
以下是可用于在主页上显示具有元数据的特定类别的产品的代码:
<ul class="products">
<?php
$args = array( 'post_type' => 'product', 'posts_per_page' => 10, 'product_cat' => 'categoryNAme', 'orderby' => 'rand' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
<li class="product">
<a href="<?php echo get_permalink( $loop->post->ID ) ?>" title="<?php echo esc_attr($loop->post->post_title ? $loop->post->post_title : $loop->post->ID); ?>">
<?php woocommerce_show_product_sale_flash( $post, $product ); ?>
<?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="300px" height="300px" />'; ?>
<h3>Title: <?php the_title(); ?></h3>
<h3>Content: <?php the_content(); ?></h3>
<h3>Date: <?php the_date(); ?></h3>
<h3>Author: <?php the_author(); ?></h3>
<span class="price"><?php echo $product->get_price_html(); ?></span>
</a>
<?php woocommerce_template_loop_add_to_cart( $loop->post, $product ); ?>
</li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul><!--/.products-->