我正在使用此代码在我的主页上显示最近的 WordPress 帖子(我使用此代码来显示帖子,因为我使用的是静态主页):
<?php
$arguments = array('numberposts' => '1');
$posts = wp_get_recent_posts($arguments);
foreach($posts as $post){
the_post_thumbnail('full');
the_title();
the_excerpt();
}
?>
但是,我需要能够将特定的分类添加到标题和摘录中,因此输出类似于:
<h1> The Title </h1>
<div class="large-8 columns"> Content from the_excerpt </div>
目前,它只输出没有类或 div 的代码。