Create list of post on any page from specific category by id
Description
Change 92 to the category of post that you want to display and all of these post will display anywhere
Change 92 to the category of post that you want to display and all of these post will display anywhere
PHP Source Code
<!-- Post Starts -->
<?php
query_posts('cat=92&posts_per_page=3&orderby=date&order=dsc'); // query to show all posts independent from what is in the center;
if (have_posts()) :
while (have_posts()) :the_post(); ?>
<!--Post attributes Start-->
<!--Post attributes End-->
<?php endwhile;
endif;
wp_reset_query();
?>
<!-- Post Ends -->