Articles

// The Query $the_query = new WP_Query( 'posts_per_page=-1&post_type=post' ); // The Loop if ( $the_query->have_posts() ) { echo ''; } else { echo 'No articles found'; // no posts found } /* Restore original Post Data */ wp_reset_postdata();