Untitled Snippet
// WP_Query arguments $args = array( 'post_type' => array( 'recipes' ), 'post_status' => array( 'published' ), 'nopaging' => true, 'order' => 'DESC', 'orderby' => 'title', ); // The Query $query = new WP_Query( $args );
// WP_Query arguments $args = array( 'post_type' => array( 'recipes' ), 'post_status' => array( 'published' ), 'nopaging' => true, 'order' => 'DESC', 'orderby' => 'title', ); // The Query $query = new WP_Query( $args );