mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
13 lines
284 B
Text
13 lines
284 B
Text
add_shortcode( 'sales', 'wc_sales_by_product_id' );
|
|
|
|
function wc_sales_by_product_id( $atts ) {
|
|
|
|
$atts = shortcode_atts( array(
|
|
'id' => ''
|
|
), $atts );
|
|
|
|
$units_sold = get_post_meta( $atts['id'], 'total_sales', true );
|
|
|
|
return $units_sold;
|
|
|
|
}
|