【发布时间】:2011-09-20 14:23:11
【问题描述】:
我最近在我的 WordPress 主题中添加了帖子格式 - 在博客页面上它很好,因为它们都具有相应的样式。但是在我的主页模板上,我只想显示“标准”帖子格式(没有链接、画廊、音频、视频等)。
在我的主题选项中,我可以决定在首页上显示多少帖子,这就是“dft_recent_number”的用途。
有人知道我可以如何更改下面的代码以排除除“标准”帖子格式之外的所有帖子格式吗?
<?php
$query = new WP_Query();
$query->query('posts_per_page='.get_option('dft_recent_number'));
//Get the total amount of posts
$post_count = $query->post_count;
while ($query->have_posts()) : $query->the_post();
?>
非常感谢任何帮助!
【问题讨论】:
标签: wordpress