按多个类别过滤Wordpress帖子

时间:2017-02-02 18:22:15

标签: php wordpress

我正在整理帖子并使用此代码显示单个类别。

 global $post;
    $args = array( 
        'category_name'=>'oranges',
        'numberposts'   => -1,
    );

我想显示“橙色”和“苹果”类别中的所有帖子,所以我修改了我用来显示单个类别的代码:

global $post;
    $args = array( 
        'category_name'=>'oranges',
        'category_name'=>'apples',
        'numberposts'   => -1,
    );

这仅显示苹果类别中的帖子 感谢

3 个答案:

答案 0 :(得分:0)

<ul>
    <?php
    global $post;

    $myposts = get_posts( array(
        'posts_per_page' => 5,
        'offset'         => 1,
        'category'       => 1 // category id here
    ) );

    if ( $myposts ) {
        foreach ( $myposts as $post ) : 
            setup_postdata( $post ); ?>
            <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
        <?php
        endforeach;
        wp_reset_postdata();
    }
    ?>
</ul>

答案 1 :(得分:0)

感谢Arsalan提出的建议,此处的代码仅提取两个类别中的帖子。

global $post;
    $args = array( 
        'category_name'=>'oranges + apples',
        'numberposts'   => -1,
    );

答案 2 :(得分:0)

对多个类别使用(+)

global $post;
$args = array( 
    'category_name'=>'oranges + apples',
    'numberposts'   => -1,
);