在另一个循环内根据值显示循环内容

时间:2014-11-05 17:13:35

标签: php wordpress loops

情境:

我有一个帖子类型portfolio和一个自定义帖子类型song,还有一个名为songs_categories的自定义分类。

投资组合位于循环1 内,歌曲位于循环2 中,位于循环1 内。

我需要做的是展示投资组合中的歌曲,但前提是歌曲category slug(专辑名称)具有投资组合post_name(专辑名称)的实际价值。

我可以获得所需的值但是我在编写进行过滤所需的实际功能时遇到了麻烦。任何帮助表示赞赏。

<!-- Loop 1 -->

<div class="songs">

<?php 

  $var1 = $post->post_name;  
  $my_query = new WP_Query('post_type=song' );

    while ( $my_query->have_posts() ) : $my_query->the_post();

?>

    <?php $terms = get_the_terms( $post->ID , 'songs_categories' ); 
        foreach ( $terms as $term ) {
            $term_link = get_term_link( $term, 'songs_categories' );
            if( is_wp_error( $term_link ) )
            continue;

        echo "$var1";
        echo "$term->slug";

       } ?>

    <div class="col one">

        <a href="<?php echo get_permalink(); ?>"><?php the_post_thumbnail(); ?></a>

         h2><?php the_title(); ?></h2>  

        <?php
        $autor_name = get_post_meta($post->ID, "_cmb_autor_text", false);
        if ($autor_name[0]=="") { ?>

        <!-- If there are no custom fields, show nothing -->

        <?php } else { ?>

        <?php foreach($autor_name as $autor_name) {
        echo '<p>'.$autor_name.'</p>';
        } ?>

    <?php } ?>  
    </div> 

<?php endwhile; ?>  <!-- End 2nd loop -->
</div> <!-- End songs -->

<?php endif; endwhile; ?>

<?php endif; // password check ?> <!-- End 1st loop -->

2 个答案:

答案 0 :(得分:1)

只需修改您的wp_query以包含您想要的过滤器

$args= array(
    'post_type'=>'song',
    'category_name'=>$post->post_name
);

$my_query = new WP_Query($args);

Wp_query非常详细,你应该阅读它以从中获得最大收益。

http://codex.wordpress.org/Class_Reference/WP_Query

答案 1 :(得分:0)

通过修改我的查询获得了所需的结果:

<?php 

$var1 = $post->post_name;

$args = array(
    'post_type' => 'song',
    'tax_query' => array(
        'relation' => 'OR',
        array(
            'taxonomy' => 'songs_categories',
            'field'    => 'slug',
            'terms'    => $var1,
        ),

    ),
);

$query = new WP_Query( $args );

while ( $query->have_posts() ) : $query->the_post();

?>