📜  woo commerce 在产品页面上打印尺寸和重量 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:33.805000             🧑  作者: Mango

代码示例1
add_action ('woocommerce_single_product_summary', 'show_weight', 20);
function show_weight() {
global $product;
$weight_unit = get_option('woocommerce_weight_unit');
$attributes = $product->get_attributes();
if ( $product->has_weight() ) {
print '

Weight: '.$product->get_weight(). $weight_unit . '

'.PHP_EOL; } }