// WP_Query arguments $args = array( ); // The Query categoria = new WP_Query( $args ); // The Loop if ( categoria->have_posts() ) { while ( categoria->have_posts() ) { categoria->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();