在中使用以下代码page.php 文件或主页模板(如果已创建)。使用Child theme 编辑主题文件
if( is_home() || is_front_page() ) {
$args = array(
\'posts_per_page\' => -1, // To show all the posts
\'cat\' => cat_id // Replace cat_id with the actual category id
);
// The Query
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo \'<li>\' . get_the_title() . \'</li>\';
}
} else {
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();
}
有关更多详细信息,请参阅
function Reference