<div class=carousel>
<ul class=panes>
<?php
// the query
$args = array(\'cat\' => id_of_featured_posts_category, \'posts_per_page\' => 5);
$the_query = new WP_Query( $args ); ?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<li>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_post_thumbnail( \'full\'); ?>
</li>
<?php endwhile; ?>
<?php endif; ?>
</ul>
</div>
我这里没有wordpress来测试它,但它应该可以工作,要了解更多信息,您可以查看文档
WP_Query. 我不知道您想将摘录添加到哪里(您需要调用\\u execrpt()函数才能获取它),但我相信您可以从这里获得。