1 2 3 4 5 6 7 8 9 10 11 12 13 |
function get_product_variation_id_by_attribute_id($attribute_id,$taxonomy = 'pa_license-plan'){ global $wpdb; $attribute_info = get_term($attribute_id,$taxonomy); $meta_key = 'attribute_'.$taxonomy; $meta_value = $attribute_info->slug; $sql = "SELECT * FROM `".$wpdb->prefix."postmeta` WHERE `meta_key` = '{$meta_key }' and `meta_value` = '{$meta_value}'"; $results = $wpdb->get_results($sql); if($results){ return $results[0]->post_id; }else{ return false; } } |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress