Nested loop : wich way/order?

时间:2017-01-08 作者:Cha

早上好(或晚上好),

我试图在一个自定义归档文件(taxonomy-$taxonomy.php)中合并一个double(?)查询让我们试着澄清一下:

我想显示分类法中的所有帖子。好的,它起作用了。

//start by fetching the terms for \'progression\' taxonomy
$terms = get_terms( \'progression\', array(
    \'orderby\'    => \'asc\',
    \'hide_empty\' => 1
) );
和查询

// Run a query for each progression
foreach( $terms as $term ) {

     $args = array(
        \'post_type\' => array(\'my_custom_post\', \'another_custom_post\'),
        \'progression\' => $term->slug,
        );

    $query = new WP_Query( $args );

    // output the term name (here "day1", "day2"...)                
    echo $term->name;

    // Start the Loop and output the titles
       while ( $query->have_posts() ) : $query->the_post(); 
           the_title(); 
       endwhile;   

    // use reset postdata to restore original query
    wp_reset_postdata();

} ?>
(当然,我自己没有找到这个……谢谢这个论坛!)

但(这就是问题所在)它会显示每个带有此税的帖子。然而,我想将我的请求限制在另一种分类法上。

第二项“运动”=>截击、网球、篮球。。。

就个人而言,这是可行的 但是,一旦我试图将这两个标准结合起来,我就惨败了

我可以编写代码(使用第二个查询和参数,但它不起作用,所以,它有用吗?)

1 个回复
最合适的回答,由SO网友:Benoti 整理而成

您需要添加tax_query 参数的关系,

$args = array(
    \'post_type\' => array(\'my_custom_post\', \'another_custom_post\'),
    \'tax_query\' => array(
        \'relation\' => \'AND\',
        array(
            \'taxonomy\' => \'progression\',
            \'field\'    => \'slug\',
            \'terms\'    => $term->slug,
        ),
        array(
            \'taxonomy\' => \'sport\',
            \'field\'    => \'term_id\',
            \'terms\'    => array( 1, 2, 3 ),
            \'operator\' => \'IN\',
        ),
    ),
);
$query = new WP_Query( $args );
当然,你需要安排term_id 对于运动分类关系。

您将在WP_Query class reference

希望有帮助。

相关推荐

无法在WordPress中通过PHP显示图像

我有一个奇怪的问题,当我尝试使用PHP输入图像标记的源代码时,它会在检查器中显示以下错误<img src=(unknown) alt=\"\"> 这个代码片段为我提供了正确的url,通过查看CPanel并粘贴和复制地址进行检查,但当我尝试通过php输入它时,不会显示图像$image = wp_get_attachment_image_src( $post_thumbnail_id); //echo($image[0]); ?> <img src=