将多个帖子类型添加到查询

时间:2019-05-16 作者:Tyler

我正在尝试添加“课程”帖子类型,以填充wp查询以及预先存在的帖子类型“模块”。最好我希望他们被合并成一个查询,显示最近的6篇文章。到目前为止,我只能在两个不同的查询中显示它们。

<?php 
//Template Name: Last 6 Modules
remove_action( \'genesis_loop\', \'genesis_do_loop\' );
add_action( \'genesis_loop\', \'ca_show_last_six_modules\' );
function ca_show_last_six_modules(){ 
$modules = new WP_Query(array(
    \'post_type\'         => \'module\',
   \'orderby\'            => \'menu_order\', 
    \'order\'                 => \'ASC\',
    \'status\'            => \'publish\',
    \'posts_per_page\'    => 6

));
if ( $modules->have_posts() ) : ?>
    <div class="row">   
        <?php while ( $modules->have_posts() ) : $modules->the_post(); ?>
            <?php get_template_part( \'template-parts/modules\', \'loop\' ); ?>
        <?php endwhile; ?>
    </div>
<?php endif;
}
 genesis(); ?>

1 个回复
SO网友:cjbj

如果你看看wp_query 文档您将看到,可以将多个参数传递为post_type. 像这样:

\'post_type\' => array( \'module\', \'lessons\' )

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post