usces_get_itemSubImageNums / ユーティリティー関数

商品のサブ画像の投稿IDを配列で取得する

説明

商品のサブ画像の投稿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

関連資料