programs
// WP_Query arguments $args = array( 'post_type' => array( 'programs' ), 'post_status' => array( 'published' ), 'order' => 'DESC', 'orderby' => 'title', ); // The Query $programs = new WP_Query( $args );
// WP_Query arguments $args = array( 'post_type' => array( 'programs' ), 'post_status' => array( 'published' ), 'order' => 'DESC', 'orderby' => 'title', ); // The Query $programs = new WP_Query( $args );