您需要将一个静态页面设置为首页,为该页面创建并分配一个PHP模板,并在模板中堆叠多个查询以搜索所需的类别并显示它们。这里有一个,您可能有很多:
// get the last post (any date) from \'Featured\' category
$featured = new WP_Query( \'category_name=Featured&posts_per_page=1\' );
if ( $featured->have_posts() )
{
while ( $featured->have_posts() )
{
$featured->the_post(); // fill $post with data
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- output markup and display the post(s) -->
</div>
<?php
}
}
rewind_posts();
// start next query
这应该给你一个想法,至少,有一个公平的一点。祝你好运