wctss_total_orders
The WooCommerce Total Sales Shortcode wctss total orders shortcode.
Usage
- // basic usage
- echo do_shortcode('[wctss_total_orders]');
- // variable usage
- $result = do_shortcode('[wctss_total_orders]');
- echo $result;
Defined (1)
The shortcode is defined in the following location(s).
- /includes/class-wctss.php
- protected static $instance = null;
- private function __construct() {
- add_shortcode( 'wctss_total_sales', array( $this, 'wctss_total_sales_shortcode' ) );
- add_shortcode( 'wctss_total_orders', array( $this, 'wctss_total_orders_shortcode' ) );
- }
- /**
- * Start the Class when called