Quantcast
Channel: Staff BLOG –ホームページ制作やリニューアル制作と印刷物デザインのWPC大阪
Viewing all articles
Browse latest Browse all 22

Advanced Custom Fieldsのチェックボックスのチェック項目ごとに画像を付与する覚書

$
0
0

ACFのチェックボックスで、チェックした項目に対して画像を付けてみようと思います。
テキストだと収まりきらない時なんかに重宝しそうです。

acf_ck_img1

capture

準備

・フィールド名を「fruit」とする
・フィールドタイプ=チェックボックス
・選択肢(選択し?)を
    apple : りんご
    orange : みかん
    grape : ぶどう
・それぞれの画像を用意し、「img」フォルダに格納したとします。

PHP

下記のように記述すると、チェックを入れたそれぞれに画像が付きます。

<?php if( in_array( 'apple', get_field('fruit') ) ) {
    echo '<img src="'.get_template_directory_uri().'/img/apple.png" alt="りんご">';
} ?>
<?php if( in_array( 'orange', get_field('fruit') ) ) {
    echo '<img src="'.get_template_directory_uri().'/img/orange.png" alt="みかん">';
} ?>
<?php if( in_array( 'grape', get_field('fruit') ) ) {
    echo '<img src="'.get_template_directory_uri().'/img/grape.png" alt="ぶどう">';
} ?>

tableで使うと、こんな感じになりますかね

fruit

表とかでテキストを改行したくないのよって時にも使えますかね^^;
以上、チェックボックスのチェック項目に画像を付与する覚書でしたー


Viewing all articles
Browse latest Browse all 22

Trending Articles