如何将帖子添加到某个页面?

时间:2011-08-04 14:11:31

标签: wordpress

我有一类称为公告的帖子。我如何在我的主页上显示这些内容?

标题为近期新闻?

1 个答案:

答案 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
}
?>