get( 'Name' ); /** * Make changes below **/ // Change the title and slug of your wizard page $art_blog_config['page_slug'] = 'art-blog'; $art_blog_config['page_title'] = 'Get Started'; // You can remove elements here as required // Don't rename the IDs - nothing will break but your changes won't get carried through $art_blog_config['steps'] = array( 'intro' => array( 'id' => 'intro', // ID for section - don't rename 'title' => __( 'Welcome to ', 'art-blog' ) . $theme_title, // Section title 'icon' => 'dashboard', // Uses Dashicons 'button_text' => __( 'System Status', 'art-blog' ), // Button text 'can_skip' => false, // Show a skip button? 'icon_url' => get_template_directory_uri().'/demo-import/assets/images/Icons-01.png' ), 'plugins' => array( 'id' => 'plugins', 'title' => __( 'Plugins', 'art-blog' ), 'icon' => 'admin-plugins', 'button_text' => __( 'Install Plugins', 'art-blog' ), 'can_skip' => true, ), 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Demo Importer', 'art-blog' ), 'icon' => 'welcome-widgets-menus', 'button_text_one' => __( 'Click On The Image To Import Customizer Demo', 'art-blog' ), 'button_text_two' => __( 'Click On The Image To Import Gutenberg Block Demo', 'art-blog' ), 'can_skip' => true, ), 'done' => array( 'id' => 'done', 'title' => __( 'All Done', 'art-blog' ), 'icon' => 'yes', ) ); /** * This kicks off the wizard **/ if( class_exists( 'ThemeWhizzie' ) ) { $ThemeWhizzie = new ThemeWhizzie( $art_blog_config ); }