If you want to display all the articles of a particular category on a page, this simple tutorial will help you.

Procedure:

01. Place the below code in the page where you want to show the posts:

<?php
$displayposts = new WP_Query();
//get posts from your news category
$displayposts->query('cat=5');
while ($displayposts->have_posts()) : $displayposts->the_post();
?>
<?php the_content('read more...'); ?>
<?php edit_post_link('edit', '', ''); ?>
<?php endwhile; ?>


This concludes this simple and useful tutorial. Hope you like it.