Untitled Snippet
// WP_Query arguments $args = array ( 'posts_per_page' => '-1', 'ignore_sticky_posts' => true, ); // The Query $proyectos = new WP_Query( $args ); // The Loop if ( $proyectos->have_posts() ) { while ( $proyectos->have_posts() ) { $proyectos->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();