nextgen; if ($nextgen->is_nextgen_installed()) { // Get all the NextGEN galleries $nextgen_galleries = $nextgen->get_nextgen_galleries(); // Get all the MaxGalleria galleries in publish, private, and draft status $args = array( 'post_type' => MAXGALLERIA_POST_TYPE, 'post_status' => 'publish,private,draft', 'numberposts' => -1, // All of them 'orderby' => 'title', 'order' => 'ASC' ); $maxgalleria_galleries = get_posts($args); } ?>