Skip to content

Instantly share code, notes, and snippets.

@kloon
Created December 5, 2012 19:13
Show Gist options
  • Save kloon/4218605 to your computer and use it in GitHub Desktop.
Save kloon/4218605 to your computer and use it in GitHub Desktop.
WooCommerce Product Count Shortcode
// [product_count] shortcode
function product_count_shortcode( ) {
$count_posts = wp_count_posts( 'product' );
return $count_posts->publish;
}
add_shortcode( 'product_count', 'product_count_shortcode' );
@vkartk
Copy link

vkartk commented Jan 17, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment