get( 'Name' ); /** * Make changes below **/ // Change the title and slug of your wizard page $config['page_slug'] = 'aster-photography'; $config['page_title'] = 'Theme Setup Wizard'; // You can remove elements here as required // Don't rename the IDs - nothing will break but your changes won't get carried through $config['steps'] = array( 'intro' => array( 'id' => 'intro', // ID for section - don't rename 'title' => __( 'Welcome to ', 'aster-photography' ) . $theme_title, // Section title 'icon' => 'dashboard', // Uses Dashicons 'button_text' => __( 'Start Now', 'aster-photography' ), // Button text 'can_skip' => false // Show a skip button? ), 'plugins' => array( 'id' => 'plugins', 'title' => __( 'Plugins', 'aster-photography' ), 'icon' => 'admin-plugins', 'button_text' => __( 'Install Plugins', 'aster-photography' ), 'can_skip' => false ), 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Demo Importer', 'aster-photography' ), 'icon' => 'welcome-widgets-menus', 'button_text' => __( 'Import Demo', 'aster-photography' ), 'can_skip' => false ), 'done' => array( 'id' => 'done', 'title' => __( 'All Done', 'aster-photography' ), 'icon' => 'yes', ) ); /** * This kicks off the wizard **/ if( class_exists( 'Whizzie' ) ) { $Whizzie = new Whizzie( $config ); }