您需要构建查询,然后在其后循环查询。
<ul>
<?php
//Your Args
$args = array(
\'post_type\' => \'post\',
\'category_name\' => \'featured\',
\'posts_per_page\' => 5,
\'post__not_in\' => get_option( \'sticky_posts\' )
);
// The Query
$query = new WP_Query( $args );
// The Loop
while ( $query->have_posts() ) {
$query->the_post();
echo \'<li>\' . get_the_title() . \'</li>\';
}
?>
</ul>
然后,在代码呼应标题的地方,您将包含HTML来构建网格。显然,在其他地方有额外的CSS将其样式设置为网格。