根据子自定义分类法显示帖子

时间:2018-03-02 09:08:38

标签: wordpress custom-wordpress-pages

我有一个名为电影的自定义CPT,它带有一个名为" cinema-city"在哪里我们可以添加城市和地区作为子孩子。我希望以一种城市应该展示的方式展示或循环电影,然后是其子女"区域"然后所有电影都在城市的那些小猫下面。 在附图中你可以看到我想要达到的粗略想法; see this image

非常感谢任何帮助。

此致

Mueed。

1 个答案:

答案 0 :(得分:0)

这样的东西?

get_terms函数参数可以在这里找到: https://developer.wordpress.org/reference/classes/wp_term_query/__construct/

get_posts函数参数可以在这里找到:https://codex.wordpress.org/Template_Tags/get_posts

// Get top level cities
$cities = get_terms(array(
    'taxonomy' => 'cinema-city'
));

// Loop cities
foreach($cities as $city){

    // Output city html

    // Get all child districts by using 'child_of' argument
    $districts = get_terms(array(
        'taxonomy' => 'cinema-city',
        'child_of' => $city->term_id
    ));

    // Loop the child districts
    foreach($districts as $district){

    // Output distruct output

        // Get all posts of thad 
        $cinemas = get_posts(array(
            'post_type' => 'cinema',
            'tax_query' => array(
                'taxonomy' => 'cinema-city',
                'field' => 'id',
                'terms' => $district->term_id
            )
        ));

        // Loop over the cinemas
        foreach($cinemas as $cinema){

            // Output cinema output

        }

    }

}