Skip to content

Instantly share code, notes, and snippets.

@8lane
Created July 13, 2014 15:48
Show Gist options
  • Select an option

  • Save 8lane/0698fcd9a762072b8815 to your computer and use it in GitHub Desktop.

Select an option

Save 8lane/0698fcd9a762072b8815 to your computer and use it in GitHub Desktop.
Display total count of products in WooCommerce
$total_products = count( get_posts( array('post_type' => 'product', 'post_status' => 'publish', 'fields' => 'ids', 'posts_per_page' => '-1') ) );;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment