Panoramica Theme Portfolio

时间:2013-03-15 作者:MidhuN

我正在为我的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();
?>

1 个回复
SO网友:Marc Dingena

要在同一页面上显示来自多个类别的帖子,请使用

$recent = new WP_Query( \'cat=2,6,17,38&posts_per_page=5\' );

结束

相关推荐

Sort post's categories by ID

我有一个博客,其中几个帖子的类别必须先输出,然后再输出其他类别。与其他类别相比,这些类别的ID较低。我正在使用get_the_category_list 但它并没有像我预期的那样工作。这让我很困惑,因为我记得有一个主题做得很好。有人能给我指出正确的方向吗?谢谢<?php get_the_category_list( array( \'orderby\' => \'ID\', \'order\' => \'ASC\' ) ); ?>&