Tsy*_*erg 1 wordpress product sql-order-by categories e-commerce
对不起,我的英语不好.我有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('');
Run Code Online (Sandbox Code Playgroud)
提前谢谢你的回复!
请尝试以下代码.
/* ----------
-------------
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
?>
Run Code Online (Sandbox Code Playgroud)
您必须在WP电子商务的产品模板中使用上述代码.
脚步:
- 打开wpsc-products_page.php文件. - 在代码中查找products loop语句.
<?php /** start the product loop here */?>
<?php while (wpsc_have_products()) : wpsc_the_product(); ?>
Run Code Online (Sandbox Code Playgroud)
- 查找产品循环结束语句.
<?php endwhile; ?>
<?php /** end the product loop here */ ?>
Run Code Online (Sandbox Code Playgroud)
- 在产品循环的同时和结束时复制整个块. - 然后将这些复制的代码包含在下面提到的条件中. - 保存并查看产品页面.
| 归档时间: |
|
| 查看次数: |
10419 次 |
| 最近记录: |