在woocommerce中定制特色产品

时间:2014-02-20 09:26:08

标签: php ajax wordpress woocommerce

任何正文都可以帮助我使用不同的排序属性(如价格,日期在商业中)对特色产品进行排序。 我试过了代码

  function sort_by()
   {
   $args = array(  
    'post_type' => 'product',  
    'meta_key' => '_featured',  
    'meta_value' => 'yes',  
    'posts_per_page' => '-1',
    'orderby' => $_POST['sorter'] ,
    'order'=>'ASC'  
   );   
    $featured_query = new WP_Query( $args );  
    print_r($featured_query); 
    if ($featured_query->have_posts()) :   

    while ($featured_query->have_posts()) : 

        $featured_query->the_post();            
        $product = get_product( $featured_query->post->ID );  

          echo the_title();

         endwhile; 
    endif;    
    wp_reset_query(); // Remember to reset  
    die();
    }
add_action('wp_ajax_sort_by','sort_by');
add_action('wp_ajax_no-prev_sort_by','sort_by');

以上代码在ajax命中时有效,但无法根据日期,价格,受欢迎程度和评级对功能产品进行排序。

0 个答案:

没有答案