アイキャッチ呼び出し
<?php if ( has_post_thumbnail() ) { the_post_thumbnail(); }?>
WPなど案件構築覚書
<?php if ( has_post_thumbnail() ) { the_post_thumbnail(); }?>
◯Default Thumbnail Plusプラグインを利用する カテゴリー・タグ毎にアイキャッチ画像が決まっている場合に使用する。 設定 < 投稿内の画像1枚目 < 個別設定 の優先度なので、特定記事のみ変更するなどということも対応出来る。 ダウンロード
下記をfunction.phpに記載する。 function acf_set_featured_image( $value, $post_id, $field ) { if ( $value != '' ) { update_post_meta($post_id, '_thumbnail_id', $value); } else { delete_post_meta($post_id, '_thu […]