显示从帖子到类别模板的ACF

时间:2018-07-20 19:38:37

标签: wordpress advanced-custom-fields

我在帖子内创建了一个自定义字段(文本字段),我想在类别模板中显示该字段的值。我是ACF的新手,我们将不胜感激。

提前谢谢

1 个答案:

答案 0 :(得分:0)

好的,所以如果您想遍历所有内容,也许可以做这样的事情。在后端的ACF部分中将“ field_name”更改为您的字段名称。

<?php
$cat = get_the_category();
global $post;
$args = array( 'posts_per_page' => -1, 'offset'=> 1, 'category' => $cat, 'post_type' => 'post', );

$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
    <li>
     // Assuming you want the link/title to the post
     <a href="<?php the_permalink(); ?>">
      <?php the_title(); ?>

      // Display the custom field value
      <?php echo get_field('field_name'); ?>
     </a>
    </li>
<?php endforeach;
wp_reset_postdata();?>