尝试使用子主题。创建自定义模板并尝试以下代码。
<?php
/*
Template Name: template name
*/
?>
<?php get_header();
$recent = new WP_Query("category_name="categoryname"&posts_per_page=5");
while($recent->have_posts()):$recent->the_post();?>
<?php the_content();
endwhile;
get_footer();
?>