カスタム投稿タイプ「news」の記事詳細ページ(single-news.php)に、プラグイン「Custom Field Suite」の「関連ポスト」で商品画像を掲載したいです。
usces_the_itemImage() では出力できませんでした。アドバイスを頂けないでしょうか。
▼試したこと
<?php usces_the_itemImage(); ?> で呼び出し
▼書いたコード
※フィールドの名前が recommend_item
<?php
$values = CFS()->get('recommend_item');
foreach ($values as $post_id):
setup_postdata( $post_id );
$rslink = get_permalink($post_id);
$rstitle = get_the_title($post_id);
?>
<p>
<a href="<?php echo $rslink ?>">
<?php echo $rstitle ?>
</a>
<figure><?php usces_the_itemImage(); ?></figure>
</p>
<?php endforeach; ?>
——————————————-
WordPress のバージョン:5.4.2
Welcart のバージョン:1.9.31
PHP のバージョン:7.4.7
ご利用のテーマ:WelcartBasic の自作子テーマ
症状を確認したブラウザ:Google Chrome
サーバー:さくらインターネット株式会社 サービス名不明
SSLの利用:常時SSL
——————————————–