我有一类称为公告的帖子。我如何在我的主页上显示这些内容?
标题为近期新闻?
答案 0 :(得分:2)
index.php
中的某个地方放了......
<?php
$cat_ID = 1234; //put your category ID here
$my_query = new WP_Query(array("cat"=>$cat_ID));
while($my_query->have_posts){
$my_query->the_post();
?>
<h3><?php the_title()?></h3>
<?php the_content()?>
<?php //etc...?>
<?php
}
?>