Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カスタム フィールド内のデータに基づいて、5 つの画像のいずれかを投稿に取り込みたいと考えています。
例: カスタム フィールドが 1 の場合、画像 A が表示されます。カスタム フィールドが 2 の場合、画像 B が表示されます。カスタム フィールドが 3 の場合、画像 C が表示されます。カスタム フィールドが 4 の場合、画像 D が表示されます。
ありがとう
PHPでこれを行うことができます.1の入力が1.jpgをロードするように、入力に対応する画像に名前を付けます
ところで、以下のコードは単なる例です。画像ファイルかどうかを確認する必要があります。そうしないと、ロードしたくない他のものを他の人がロードできるようになります。
<?php echo '<img src="image_folder/'+ $customfieldvalue +'.jpg" />'; ?>