Advanced custom fieldsを使用したときにcategory.phpに値を表示する方法
-
投稿にてAdvanced custom fieldsを使用してカスタムフィールドを入力しています。
この際にcategory.phpでカテゴリごとの一覧ページを表示したいのですが、カスタムフィールドの値が表示されません。
表示方法をお教え頂け得ればと思います。
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="<?php the_field( '表示サイズ',$post->ID); ?>"><div class="<?php the_field( '表示サイズ',$post->ID); ?>_inner"> <a href="<?php the_permalink() ?>"> <?php if(get_post_meta($post->ID,'表示サイズ',true) == 'middle'): ?> <p class="text_center"><img src="<?php the_field( 'フォト画像大',$post->ID); ?>" alt="<?php echo mb_substr(get_the_title(), 0, 20); ?>" width="300" /></p> <?php endif; ?> <?php if(get_post_meta($post->ID,'表示サイズ',true) == 'small'): ?> <p class="text_center"><img src="<?php the_field( 'フォト画像小',$post->ID); ?>" alt="<?php echo mb_substr(get_the_title(), 0, 20); ?>" width="136" /></p> <?php endif; ?> <?php endwhile; ?> <?php wp_reset_query();endif; ?>
- トピック「Advanced custom fieldsを使用したときにcategory.phpに値を表示する方法」には新たに返信することはできません。