抱歉我的英语不好。 我有WP 3.3.1& WP-E-commerce.3.8.7.6.2。在产品页面(使用wpsc-products_page.php模板)我有产品列表。我想按类别对这些产品进行分组。例如:
** CAT1
产品1
产品2
** Cat2
产品1
产品2
** Cat3
产品1
产品2
我尝试使用此方法,但它不起作用
add_filter('posts_join', create_function('$a', 'global $wpdb; return $a . " INNER JOIN $wpdb->term_relationships ON ($wpdb->posts.ID = $wpdb->term_relationships.object_id) INNER JOIN $wpdb->term_taxonomy ON ($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id) ";'));
add_filter('posts_where', create_function('$a', 'global $wpdb; return $a . " AND $wpdb->term_taxonomy.taxonomy = \'wpsc_product_category\'";'));
add_filter('posts_orderby', create_function('$a','global $wpdb; return "$wpdb->term_taxonomy.term_id DESC";'));
query_posts('');
提前感谢您的回复!
答案 0 :(得分:7)
请尝试以下代码。
/* ----------
-------------
Continue code
-------------
---------- */
<?php
/* Check if this is the products page not the category or single page */
if( is_products_page() && wpsc_is_product() && (!wpsc_is_in_category()) && (!wpsc_is_single_product()) ) {
/* Get all the categories for wp e-commerce products */
$wpec_product_categories = get_terms( 'wpsc_product_category', 'hide_empty=0&parent=0');
foreach($wpec_product_categories as $wpec_categories){
$wpec_term_id = $wpec_categories->term_id;
$wpec_term_name = $wpec_categories->name;
$wpec_term_slug = $wpec_categories->slug;
//Skip the categories term(which comes default in wp e-commerce
if($wpec_term_slug == 'categories') {
continue;
}
//Set the args array
$wpec_args = array(
'post_status' => 'publish',
'post_type' => 'wpsc-product',
'numberposts' => 12,
'showposts' => 12,
"wpsc_product_category" => $wpec_term_slug
);
$wpec_categoryProducts = new WP_Query($wpec_args);
?>
<div class="wpec_productcat_name"><h3><?php echo $wpec_term_name; ?></h3></div>
<?php /** start the category wise - products loop here */?>
<?php while ($wpec_categoryProducts->have_posts()) : $wpec_categoryProducts->the_post();
global $wpsc_custom_meta, $wpsc_variations;
$wpsc_custom_meta = new wpsc_custom_meta( get_the_ID() );
$wpsc_variations = new wpsc_variations( get_the_ID() );
?>
<div class="default_product_display product_view_<?php echo wpsc_the_product_id(); ?> <?php echo wpsc_category_class(); ?> group">
/* ----------
-------------
Continue code - product display
-------------
---------- */
</div><!--close default_product_display-->
<?php endwhile; ?>
<?php /** end the product loop here */?>
<?php
}
else {
?>
<?php /** start the wp e-commerce default product loop here */ ?>
<?php while (wpsc_have_products()) : wpsc_the_product(); ?>
<div class="default_product_display product_view_<?php echo wpsc_the_product_id(); ?> <?php echo wpsc_category_class(); ?> group">
/* ----------
-------------
Continue code - products display(same code as above)
-------------
---------- */
</div><!--close default_product_display-->
<?php endwhile; ?>
<?php /** end the product loop here */?>
<?php
} //End of else block for products page checking
?>
您必须在WP电子商务的产品模板中使用上述代码。
步骤:
- 打开wpsc-products_page.php文件。 - 在代码中找到products loop语句。
<?php /** start the product loop here */?>
<?php while (wpsc_have_products()) : wpsc_the_product(); ?>
- 查找产品循环结束语句。
<?php endwhile; ?>
<?php /** end the product loop here */ ?>
- 在产品循环的同时和结束时复制整个块。 - 然后将这些复制的代码包含在下面提到的条件中。 - 保存并查看产品页面。
答案 1 :(得分:0)
如果您转到管理面板并点击产品,您会看到“类别”点击它并为您的产品创建类别,就像单个产品页面一样。然后在您的产品页面中,转到每个产品,您可以选择适合的类别。
在设置&gt;商店&gt;外观中找到“选择要在产品页面上显示的产品类别:”并将箭头移至“显示产品类别列表”。
然后找到“用产品/类别名称替换页面标题:”单击“是”。
然后转到外观&gt;菜单并单击菜单。如果向下滚动,您将看到您创建的产品类别可以添加到菜单中。我已将它们作为子项目放入我的商店。当有人点击商店时,第一页是产品类别列表。如果他们点击某个类别,他们会获得该类别中的产品列表。
我认为这是你想要实现的目标。
我的网站是:www.greenhillsoaps.com
希望这有帮助。