我想这可能是你的救命稻草。这是一个创建多个循环的简单函数。它检索latest posts 或发布匹配条件。
<?php $posts_array = get_posts( $args ); ?>
<?php $args = array(
\'numberposts\' => 5,
\'offset\' => 0,
\'category\' => ,
\'orderby\' => \'post_date\',
\'order\' => \'DESC\',
\'include\' => ,
\'exclude\' => ,
\'meta_key\' => ,
\'meta_value\' => ,
\'post_type\' => \'post\',
\'post_mime_type\' => ,
\'post_parent\' => ,
\'post_status\' => \'publish\' ); ?>
对于排除类别,请尝试在类别id前面添加减号。