[ create a new paste ] login | about

Link: http://codepad.org/lZxybGxH    [ raw code | output | fork ]

PHP, pasted on Oct 12:
1
2
3
4
5
6
7
8
<?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');
?>
							


Output:
1
2

Fatal error: Class 'WP_Query' not found on line 5


Create a new paste based on this one


Comments: