ファンクション
wcexics_item_has_options( int $post_id )
true if options exist for the post, false otherwisetrue if options exist for the post, false otherwise(数値) (必須)
ファイル: src/template-functions.php
function wcexics_item_has_options($post_id) {
$opts = wcexics_get_item_options($post_id);
if (!empty($opts) && is_array($opts) && 0 < count($opts)) {
return true;
}
return false;
}
使用するアイテム #使用するアイテム | 説明 |
|---|---|
| src/template-functions.php: wcexics_get_item_options() | Gets a posts item options |
| 使用されるアイテム | 説明 |
|---|---|
| src/template-functions.php: wcexics_display_item_options() | Echos group item options HTML |