関数
Utils::isGroupItem( int $skuMetaId )
true if the SKU is a group item in any combo-sets, false otherwiseパラメータ パラメータ
- $skuMetaId
(数値) (必須)
ファイル: src/Utils.php
public static function isGroupItem($skuMetaId) {
global $wpdb;
$csgit = Schema::getComboSetGroupItemsTable();
return (bool)(int)$wpdb->get_var(
$wpdb->prepare(
"SELECT COUNT(ID) FROM {$csgit} WHERE welitem_sku_meta_id = %d",
(int)$skuMetaId
)
);
}