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