如何在Wordpress主页上仅显示两个类别的帖子?

时间:2017-05-30 09:06:16

标签: php wordpress categories

主页中只需要显示两个类别。任何人都可以提供帮助。

5 个答案:

答案 0 :(得分:0)

在您的functions.php文件中粘贴以下代码:

我假设您要显示两个类别中具有ID 5和9的类别。

function kiran_home_category( $query ) {
 if ( $query->is_home() && $query->is_main_query() ) {
 $query->set( 'cat', '5,9');
 }
}
add_action( 'pre_get_posts', 'kiran_home_category' );

<强>解释

kiran_home_category只是该功能的自定义名称。那可以是任何名字。它的工作方式是将一个函数附加到动作钩pre_get_posts。因此,在收到帖子之前,将调用函数kiran_home_category。然后在函数内部我将查询更改为仅加载ID为5和9的类别

答案 1 :(得分:0)

您可以使用WP_Query获取帖子列表,并使用循环显示

示例:

$the_query = new WP_Query( array( 'category_name' => 'staff,news' ) );

// The Loop
if ( $the_query->have_posts() ) {
    echo '<ul>';
    while ( $the_query->have_posts() ) {
        $the_query->the_post();
        echo '<li>' . get_the_title() . '</li>';
    }
    echo '</ul>';
    /* Restore original Post Data */
    wp_reset_postdata();
} else {
    // no posts found
}

答案 2 :(得分:0)

在wordpress WP_query中, category__in 参数用于选择带帖子的类别。

<?php 
      $query = new WP_Query( array( 'category__in' => array( 2, 6 ),'post_status'=>'publish','orderby'=>'menu_order','order'=>'Asc' ) );
     if($query->have_posts()):
        echo '<ul>';
        while ( $query->have_posts() ) : the_post();
            echo '<li>' . get_the_title() . '</li>'; 
         endwhile;
        echo '</ul>';
     endif;
   ?>

有关wordpress查询click here的更多信息,您可以阅读更多信息。

答案 3 :(得分:0)

   <?php 
        $args = array( 'post_type' => 'post', 'posts_per_page' => -1,'category_name' => array('Latest News','News')  );
        $loop = new WP_Query( $args );
        if($loop->have_posts()):
    ?><ul>

                <?php
                    while ( $loop->have_posts() ) : $loop->the_post();
                ?>
                    <li> <span class="date"><?php echo get_the_date( 'd F Y');?></span>
                    <h3><?php echo get_the_title();?></h3>
                    <?php echo $description = get_the_content(); ?>
                    </li>

                <?php endwhile;?>
            </ul>

    <?php endif;?>  
    <?php wp_reset_postdata(); ?>

答案 4 :(得分:0)

通常在page.php或single.php中执行以下操作,或者如果您要为类别创建自定义页面,则可以执行category-samplecat.php。

$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
     $args = array(
        'post_type' => 'post',
        'post_status' => 'publish',
        'category_name' => array('samplecat', 'anothercat'),
        'paged' => $paged
    );

    $arr_posts = new WP_Query($args);

然后执行常规的if,while语句。

if($arr_posts->have_posts() ) :
        // Start the loop.
            while ( $arr_posts->have_posts() ) : 
                $arr_posts->the_post();?>

<?php endwhile; 
endif;