説明
商品のサブ画像の投稿IDを配列で取得します。
配列のキーは1からの連番になります。
使い方
<?php $sub_imageid = usces_get_itemSubImageNums(); ?>
パラメータ
なし
戻り値
- (配列)
- サブ画像の投稿IDを格納した配列。キーは1からの連番。
注意
global $post が必要です。
用例
<?php while ( have_posts() ) : the_post(); usces_the_item(); ?> <h2 class="item_name"><?php usces_the_itemName(); ?> (<?php usces_the_itemCode(); ?>)</h2> <?php $imageid = usces_get_itemSubImageNums(); ?> <?php foreach( $imageid as $id ) : ?> <a href="<?php usces_the_itemImageURL( $id ); ?>" <?php echo apply_filters( 'usces_itemimg_anchor_rel', NULL ); ?>><?php usces_the_itemImage( $id, 135, 135, $post ); ?></a> <?php endforeach; ?> <?php endwhile; ?>
フック
- 利用できるフックはありません。
ソースファイル
usc-e-shop/functions/template_func.php
関連資料
- usces_the_itemImage() ・・・ 現在の商品画像を表示する
- usces_the_itemImageURL() ・・・ 商品画像のURLを取得・表示する
- usces_the_itemImageCaption() ・・・ 商品画像のキャプションを取得・表示する
- usces_the_itemImageDescription() ・・・ 商品画像の説明を取得・表示する