Issue
I want to get Best selling Products on Home page. I am using Below query But this is not getting best selling products from all categories.
If I put best selling product short code that is working but custom structure could not get those products. These My Query Function..
function get_product_posts_hp()
{
wp_reset_query();
$args = array(
'posts_per_page' => 12,
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'meta_key' => 'total_sales',
'orderby' => 'meta_value_num',
'order' => 'DESC',
);
return new WP_Query($args);
}
Thanks In Advance..
Solution
Your code works globally… I have tried with the following function code:
function get_product_posts_hp(){
$query = new WP_Query( array(
'posts_per_page' => 12,
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'meta_key' => 'total_sales',
'orderby' => 'meta_value_num',
'order' => 'DESC',
) );
echo '<p>Count: '. $query->post_count ; '</p>';
if($query->have_posts()) :
while($query->have_posts()) : $query->the_post();
echo '<p>' . get_the_title() . ' (';
echo get_post_meta( get_the_id(), 'total_sales', true) . ')</p>';
endwhile;
wp_reset_postdata();
endif;
}
And I get 12 products titles displayed by total sales DESC.
Answered By - LoicTheAztec Answer Checked By - Marilyn (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.