Create list of post on any page from specific category by category name or slug

Description

Change wedding-party to the slug of the category of post that you want to display and all of these post will display anywhere

Change wedding-party to the slug of 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('category_name=wedding-party&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 -->                        
                        


Post Categories