Issue
What code use to display the total number of products? I want to make a section with icons on the main page of my store and it would be great to include something like that.
Best Regards
Solution
In case you want to show total number of published products in your store, use the following code:
$args = array( 'post_type' => 'product', 'post_status' => 'publish',
'posts_per_page' => -1 );
$products = new WP_Query( $args );
echo $products->found_posts;
It returns the total number of published products in your store.
Answered By - Deep Kakkar
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.