foreach with $ posts和$ terms

时间:2015-11-09 16:01:25

标签: php wordpress foreach advanced-custom-fields

我在Wordpress网站上使用ACF relationship字段,以便管理员用户可以轻松确定哪些帖子在该网页上可见。我有一个自定义分类法,我需要get_the_terms并打印每个帖子的术语。这是codex中提到的foreach的正常实现。

但是我使用foreach来获取$posts所以我不知道如何使用它来打印H3中的术语名称和主{{1}中的术语slug }

以下代码:

<div>

1 个答案:

答案 0 :(得分:2)

由于条款与您的帖子相关联,您必须放置:

$terms = get_the_terms( $post->ID , 'position' );

在foreach循环内部,在它之外根本不起作用,因为$post->ID将是错误:

trying to get the property of non object

所以解决方案是$terms = get_the_terms( $post->ID , 'position' );并将其添加到foreach循环中:

<?php
$posts = get_field('team_members',12);
if( $posts ): ?>
    <?php foreach( $posts as $post): // variable must be called $post (IMPORTANT) 
    setup_postdata($post);
       $terms = get_the_terms( $post->ID , 'position' ); ?>
    <div class="col-4 col <?php echo $term->slug;?>">
        <article id="post-<?php the_ID(); ?>" <?php post_class('team-item'); ?>>
            <hgroup>
                <?php the_title( sprintf( '<h2 class="alt-heading-4">', esc_url( get_permalink() ) ), '</h2>' ); ?>
              <?php foreach($terms as $term) {?>
                <h3><?php echo $term->name;?></h3>
              <?php } ?>
            </hgroup>

            <div class="team-entry-content">
                <?php the_content();?>
            </div><!-- .entry-content -->
            <div id="team-shadow"></div>
        </article><!-- #post-## -->
    </div>
     <?php endforeach; ?>
    <?php wp_reset_postdata();?>
<?php endif; ?>

我希望它有所帮助:)。