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' );

输出指定分类目录的文章

    745, // 分类ID 'posts_per_page' => 10, // 显示篇数 ); query_posts($args); if(have_posts()) : while (have_posts()) : the_post(); ?>

发布者

MZ 🍒

喜欢陈一发儿~

退出移动版