我目前正在与Woocommerce合作。以下代码目前将变化价格添加到产品页面的下拉列表中:
function display_price_in_variation_option_name( $term ) {
global $wpdb, $product;
$result = $wpdb->get_col( "SELECT slug FROM {$wpdb->prefix}terms WHERE name = '$term'" );
$term_slug = ( !empty( $result ) ) ? $result[0] : $term;
$query = "SELECT postmeta.post_id AS product_id
FROM {$wpdb->prefix}postmeta AS postmeta
LEFT JOIN {$wpdb->prefix}posts AS products ON ( products.ID = postmeta.post_id )
WHERE postmeta.meta_key LIKE '_wholesale_price%'
AND postmeta.meta_value = '$term_slug'
AND products.post_parent = $product->id";
$variation_id = $wpdb->get_col( $query );
$parent = wp_get_post_parent_id( $variation_id[0] );
if ( $parent > 0 ) {
$_product = new WC_Product_Variation( $variation_id[0] );
return $term . ' (' . woocommerce_price( $_product->get_price() ) . ')';
}
return $term;
}
我想编辑以下内容:
return $term . ' (' . woocommerce_price( $_product->get_price() ) . ')';
我希望显示已经保存的custom_meta,而不是提价。
我尝试用以下内容替换上述内容:
return $term . ' (' . get_post_meta( get_the_ID(), '_wholesale_price', true ) . ')';
但它什么也没有回报。有谁知道实现这个目标的正确方法?
答案 0 :(得分:0)
如果数据在循环之外,则需要先获取数据。试试这个:
global $post;
return $term . ' (' . get_post_meta($post->ID, '_wholesale_price', true) . ')';
答案 1 :(得分:0)
我设法通过以下方式解决了这个问题:
return $term . ' (' . $value['data']->variation_id, '_wholesale_price', true ) . ')';