wordpress カスタムフィールドACFを使ったif elseif else endifまとめ
23.08.02

カスタムフィールドでフィールド名を作ったら、”もしフィールドあったら”、”もしくはこのフィールドがあったら”、”フィールドがなかったら”の書き方をご紹介します。
ifとendifの基本形
“もしフィールドあったら”表示の方法。※youtube_ulrがフィールド名。
1 2 3 |
<?php if(get_field('youtube_ulr')): ?> <?php the_field('youtube_ulr'); ?> <?php endif; ?> |
ifとelseifの構文
“もしyoutube_ulrのフィールドあったら。youtube_ulrはないけどgaibu_ulrがあったら。”
1 2 3 4 5 |
<?php if(get_field('youtube_ulr')): ?> <?php the_field('youtube_ulr'); ?>"> <?php elseif(get_field('gaibu_url')): ?> <?php the_field('gaibu_url'); ?> <?php endif; ?> |
ifとelseifとelseの構文
“もしyoutube_ulrのフィールドあったら。youtube_ulrはないけどgaibu_ulrがあったら。youtube_ulrもgaibu_ulrもなかったら”
elseを使うときはコロンを使う!セミコロンはエラーになる!忘れがち!
1 2 3 4 5 6 7 |
<?php if(get_field('youtube_ulr')): ?> <?php the_field('youtube_ulr'); ?>"> <?php elseif(get_field('gaibu_url')): ?> <?php the_field('gaibu_url'); ?> <?php else: ?> <p>どちらでもない</p> <?php endif; ?> |
タグで囲えば、わかりやすいしwhile構文の中にも使える。
以下はニュースのタイトルをif構文で表示。youtube_ulrフィールドがあればタイトルクリックでyoutubeが開く仕組み。
gaibu_urlフィールドがあれば、タイトルクリックで外部リンクへ行く仕組み。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<?php $args = array( 'post_type' => 'news', 'posts_per_page' => '10' ); $the_query = new WP_query($args); if ($the_query->have_posts()): ?> <section class="news-list_wrap"> <div class="index_archive_link"><a href="<?php echo esc_url(home_url('/news/')); ?>">ニュース一覧</a></div> <ul class="news-list"> <?php while($the_query->have_posts()): $the_query->the_post(); ?> <?php if(get_field('gaibu_url')): ?> <li> <span class="date"><?php the_time('Y.m.d'); ?></span> <a href="<?php the_field('gaibu_url'); ?>"><?php the_title(); ?></a> </li> <?php elseif(get_field('youtube_url')): ?> <li> <span class="date"><?php the_time('Y.m.d'); ?></span> <a href="<?php the_field('youtube_url'); ?>"><?php the_title(); ?></a> </li> <?php else: ?> <li> <span class="date"><?php the_time('Y.m.d'); ?></span> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li> <?php endif; ?> <?php endwhile; ?> </ul> </section> <?php wp_reset_postdata(); endif; ?> |
お役に立てましたらadsenseクリックお願いします!
いかがでしたでしょうか?もしお役に立てましたら、お賽銭のつもりでadsenseをポチっとクリックお願いします!↓上手くいきますようにお祈りしておきます!
関連記事
-
2023.05.22 Advanced Custom Fieldsの画像フィールドの使い方と応用方法
-
2023.11.07 Googleビジネスプロフィール登録方法(旧グーグルマイビジネス)
-
2019.06.10 css PCで背景固定演出→スマホでは背景普通演出にする方法
-
-
2024.09.10 All-in-One WP Migration 容量の上げ方2G
-
2019.04.05 マウスオーバーした時に画像がふわっと大きくなる方法