<?php
// get posts of the category
// for a second loop in Wordpress
 $wp_query = null;
 $wp_query = new WP_Query();
 $wp_query->query('category_name=News&post_type=post&orderby=date&order=DESC');
?>
							
