每学期分类标准一个职位

时间:2019-02-03 13:42:04

标签: wordpress taxonomy

我再次需要帮助。

我使用以下查询:

$tax = get_the_terms($id, 'coupon_category');
                    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
                    query_posts( array(
                        'post_type' => APP_POST_TYPE,
                        'post_status' => 'publish',
                        'posts_per_page' => 4,
                        'tax_query' => array( 
                        'relation' => 'AND',
                            array(
                            'taxonomy' => 'coupon_category', // Taxonomy
                            'field'    => 'slug',
                            'terms'    => $tax[0]->slug, // Your category slug
                            ),
                            array(
                            'taxonomy' => APP_TAX_STORE,
                            'field'    => 'slug',
                            'terms'    => $term->slug,
                            'operator' => 'NOT IN',
                            ),
                        ),                      
                    ) );

我知道需要一种解决方案,以仅在每个分类术语APP_TAX_STORE中显示一个帖子。尝试了这个Userfull论坛中的一些解决方案,但对我不起作用。

0 个答案:

没有答案