从多个帖子类型中查询一个类别名称

时间:2017-05-15 14:37:36

标签: wordpress custom-post-type categories

我的查询有问题。我有4种不同的post_type。 我想从一个名为'une'的类别中检索所有帖子类型的帖子。但它仅显示来自两个帖子类型的帖子类型=>眼镜和帖子。

这是我的代码:

<?php 
query_posts(array(
'post_type' => array('post','videos','photos','spectacles'),
'showposts' => -1,
'category_name' => 'une',
)
); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>

<?php endwhile; else: ?>
<?php endif; ?>

就像category_name对我的查询不起作用。

1 个答案:

答案 0 :(得分:0)

我找到了问题的解决方案,我将其添加到functions.php

function namespace_add_custom_types( $query ) {
  if( is_category() || is_tag() && empty( $query->query_vars['suppress_filters'] ) ) {
    $query->set( 'post_type', array(
     'post', 'nav_menu_item', 'spectacles','historique','photos','videos'
        ));
      return $query;
    }
}
add_filter( 'pre_get_posts', 'namespace_add_custom_types' );