如何在不使用简码Woocommerce的情况下将所有产品属性放在描述下方

时间:2018-08-29 04:27:56

标签: function woocommerce attributes

目前,我已使用此代码并将简码和ID放入每个产品信息中。

add_shortcode("product_attributes", "display_product_attributes");
function display_product_attributes( $atts ) {

    // Shortcode attribute (or argument)
    $atts = shortcode_atts(
        array(
            'id'    => ''
        ),
        $atts, 'product_attributes'
    );

    if( ! ( isset($atts['id']) && $atts['id'] > 0 ) ) return;

    $product = wc_get_product($atts['id']);

    ob_start();

    do_action( 'woocommerce_product_additional_information', $product );

    return ob_get_clean();
}

有人可以共享我不需要使用简码的新代码,它会在下面的每个产品说明中自动显示其他产品信息吗?

示例如下图

combine description and additional information

0 个答案:

没有答案