如何查询一些特定的静态页面以及某个类别的最新帖子?
问问题
33 次
1 回答
2
为此,您必须制作一个模板。
并将其提供给特定页面。
并在该模板中给出以下代码来调用特定类别的帖子。
尝试这个:
<?php
$args2 = array(
'numberposts' => 1,
'cat' => 4,
'orderby' => 'date',
'order' => 'DESC',
'post_type' => 'post',
'post_parent' => '',
'post_status' => 'publish',
'suppress_filters' => true
);
$homepage_content = get_posts($args2);
foreach ($homepage_content as $key => $value) {
echo "<h2>" . $value->post_title . "</h2>";
echo $value->post_content;
$post_id = $value->ID;
}
?>
这里只需在 cat 参数中传递 Category 的 ID。
For more reference: http://codex.wordpress.org/Template_Tags/get_posts
- 谢谢
于 2013-11-06T05:42:30.690 回答