I jus want to create a gallery which shows either all or certain number of posts in that category under each post and i found a working code
<?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; ?>
in the above code i want to enter the specific category instead of cat=5