实现效果如上图,只需要把下面的代码添加到你的主题或者子主题的 functions.php 文件里就可以通过调用 [product_count]
显示出全站产品的数量。
// WooCommerce 产品计数简码 [product_count]
function product_count_shortcode( ) {
$count_posts = wp_count_posts( 'product' );
return $count_posts->publish;
}
add_shortcode( 'product_count', 'product_count_shortcode' );
对于我们这些资源密集型的网站,能有个计数还是比较方便的。