wordpress WooCommerce在可变价格后显示变量描述

qco9c6ql  于 2022-11-22  发布在  WordPress
关注(0)|答案(1)|浏览(127)

我试图在woocommerce产品页面中显示变量描述。我安装了一个名为woocommerce单选按钮的插件,用于将变量产品和价格显示为单选按钮而不是选择按钮。
我正在编辑variable.php文件,在这个插件中(然后我会把它转移到我的子主题一旦完成),基本上我需要显示变量描述到一个标签,作为一个名为$variable_description的变量。

printf( '<div>
    <input type="radio" name="%1$s" value="%2$s" id="%3$s" %4$s>
    <label for="%3$s">%5$s</label>
    <label>'.$variable_description.'</label>
    </div>', $input_name, $esc_value, $id, $checked, $filtered_label );

我无法从数据库中恢复这些数据,因为我不了解数据库的结构。
你知道任何短代码或函数来恢复它,并显示每个可变价格的变量描述?
在我正在编辑的函数中,价格作为第一个标签正确地显示在单选按钮旁边的每个变量中。函数的完整代码是:

if ( ! function_exists( 'print_attribute_radio' ) ) {
    function print_attribute_radio( $checked_value, $value, $label, $name, $product_id ) {

        // This handles < 2.4.0 bw compatibility where text attributes were not sanitized.
        $checked = sanitize_title( $checked_value ) === $checked_value ? checked( $checked_value, sanitize_title( $value ), false ) : checked( $checked_value, $value, false );

        $input_name = 'attribute_' . esc_attr( $name ) ;
        $esc_value = esc_attr( $value );
        $id = esc_attr( $name . '_v_' . $value );
        $filtered_label = apply_filters( 'woocommerce_variation_option_name', $label );
        
    //here is where I try to recover the variable_description

        global $wpdb;
        $post_id = $product_id + 3;
        
         $querystr = "SELECT wpostmeta.meta_value
                    FROM $wpdb->postmeta wpostmeta
                    WHERE wpostmeta.post_id = '$post_id'
                    AND wpostmeta.meta_key = '_variation_description'
                    ORDER BY wpostmeta.meta_value DESC
                    "; 
        

     $variable_description = $wpdb->get_var($querystr);
     
        printf( '<div>
        <input type="radio" name="%1$s" value="%2$s" id="%3$s" %4$s>
        <label for="%3$s">%5$s</label>
        <label>'.$variable_description.'</label>
        </div>', $input_name, $esc_value, $id, $checked, $filtered_label );
        
    }
}
11dmarpk

11dmarpk1#

要获取后 meta数据,您可以使用WordPress get_post_meta()函数代替(它更短,价格也更实惠)。
因此,您的代码现在应该是:

if ( ! function_exists( 'print_attribute_radio' ) ) {
    function print_attribute_radio( $checked_value, $value, $label, $name, $product_id ) {

        // This handles < 2.4.0 bw compatibility where text attributes were not sanitized.
        $checked = sanitize_title( $checked_value ) === $checked_value ? checked( $checked_value, sanitize_title( $value ), false ) : checked( $checked_value, $value, false );

        $input_name = 'attribute_' . esc_attr( $name ) ;
        $esc_value = esc_attr( $value );
        $id = esc_attr( $name . '_v_' . $value );
        $filtered_label = apply_filters( 'woocommerce_variation_option_name', $label );

        // HERE the product variation description
        $variation_id = $product_id + 3;
        $variable_description = get_post_meta( $variation_id, '_variation_description', true );

        printf( '<div>
        <input type="radio" name="%1$s" value="%2$s" id="%3$s" %4$s>
        <label for="%3$s">%5$s</label>
        <label>'.$variable_description.'</label>
        </div>', $input_name, $esc_value, $id, $checked, $filtered_label );
    }
}

相关问题