WordPress 首页指定分类文章

首页排除某些指定分类文章的显示

function exclude_category_home( $query ) { 
if ( $query->is_home ) {//是否首页 
$query->set( 'cat', '-1, -2' ); //排除的指定分类id 
} 
return $query; 
} 
add_filter( 'pre_get_posts', 'exclude_category_home' );

输出指定分类目录的文章

<ul>
<?php
$args=array(
'cat' => 745, // 分类ID
'posts_per_page' => 10, // 显示篇数
);
query_posts($args);
if(have_posts()) : while (have_posts()) : the_post();
?>
<li>
<a href="<?php%20the_permalink();%20?>" rel="external nofollow" target = "_blank" ><?php the_title(); ?></a>
</li>
<?php endwhile; endif; wp_reset_query(); ?>
</ul>
(1)

相关推荐