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.
ACF でチェックボックスを作成しました。フロント エンドでチェックボックスの値を表示できるようになりましたが、関連するラベルを表示したいと考えています。
これが私のコードです:
echo "<ul>"; $profession = get_field('profession'); foreach($profession as $key => $check){ echo "<li>".$check."</li>"; }; echo "</ul>";
どうもありがとう !