How to add posts to a certain page?

I have a category of posts called announcements. How do i show these on my home page?

With a title Recent News?

Related posts

Leave a Reply

1 comment

  1. Somewhere in index.php put this…

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