我正在为我的WordPress网站使用panoramica主题。我想在一个页面中显示“与团队见面”类别的投资组合以及其他帖子类别。这怎么可能。现在我可以在一个页面中显示特定类别的帖子。我需要添加Posrtfolio页面到这个页面。下面是我用来在一个页面中显示特定类别帖子的代码。
<?php
/*
Template Name: Custom Template
*/
?>
<?php get_header();
$recent = new WP_Query("cat=4&posts_per_page=5");
while($recent->have_posts()):$recent->the_post();
the_content();
endwhile;
get_footer();
?>