返信先: query_postsで在庫のある商品を抽出するには

フォーラム 使い方全般 query_postsで在庫のある商品を抽出するには 返信先: query_postsで在庫のある商品を抽出するには

#69611
FRA
参加者

kitamuuu様

ご返信ありがとうございました。頂いたヒントを参考に、条件分岐で出来ました!

※query_postsは使わず、ループ内に設置

<?php if(have_posts()): while(have_posts()): the_post(); ?>
<?php if(usces_have_zaiko_anyone()): ?>
//表示させたいコンテンツ
<?php endif; ?>
<?php endwhile; endif; ?>

ご回答有難うございました。^^