0

我正在使用此代码在我的主页上显示最近的 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 的代码。

4

1 回答 1

3
<?php 
$arguments = array('numberposts' => '1');
$posts = wp_get_recent_posts($arguments);
foreach($posts as $post):
?>

<?php the_post_thumbnail('full'); ?>
<h1><?php the_title(); ?></h1>
<div class="large-8 columns"><?php the_excerpt(); ?></div>

<?php endforeach; ?> 

你可以跳出php来写html。默认的wordpress模板文件中应该有很多这样的例子。

于 2013-09-26T03:24:40.057 回答