QUERY MENIU
// WP_Query arguments $args = array( 'post_type' => array( 'meniul_zilei' ), 'post_status' => array( 'publish' ), 'nopaging' => true, 'order' => 'ASC', ); // The Query $meniuri = new WP_Query( $args ); // The Loop if ( $meniuri->have_posts() ) { while ( $meniuri->have_posts() ) { $meniuri->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();