Menu Query
// WP_Query arguments $args = array( 'post_type' => array( 'menu' ), 'post_status' => array( 'publish' ), 'nopaging' => true, 'posts_per_page' => '-1', 'order' => 'DESC', 'orderby' => 'menu_order', 'tax_query' => array( array( 'taxonomy' => 'menu_categories', 'field' => 'term_id', ), ), ); // The Query $query = new WP_Query( $args );