Profile image for Elie Andraos elieandraos
Query By Post Type With Date Desc
Language
PHP
Tags
Wordpress

Query By Post Type With Date Desc

1 <? 2 wp_reset_query(); 3 query_posts( array( 'post_type' => 'work', 'orderby' => 'post_date', 'order' => 'DESC', 'numberposts' => -1 ) ); 4 5 if ( have_posts() ) : 6 while ( have_posts() ) : 7 the_post(); 8 the_title(); 9 echo "<br/>"; 10 endwhile; 11 endif; 12 ?>

Comments