# ultimate-post-kit/4.1.11/includes/setup-wizard/views/render.php

Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider &amp; Blog Layout Widgets, version 4.1.11. 41 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post-kit/4.1.11/code/includes/setup-wizard/views/render.php
- Raw: https://pluginprobe.com/plugins/ultimate-post-kit/4.1.11/raw/includes/setup-wizard/views/render.php
- Modified: 2026-06-07T05:18:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ultimate-post-kit/4.1.11/code/includes/setup-wizard/views/render.php#L10-L20`.

```php
<?php
/**
 * Render all steps
 */

namespace UltimatePostKit\SetupWizard;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>
<div class="bdt-step-header">
	<div class="bdt-shape-elements">
		<div class="bdt-shape bdt-shape-circle"></div>
		<div class="bdt-shape bdt-shape-square"></div>
		<div class="bdt-shape bdt-shape-triangle"></div>
		<div class="bdt-shape bdt-shape-dots"></div>
		<div class="bdt-shape bdt-shape-ring"></div>
		<div class="bdt-shape bdt-shape-plus"></div>
	</div>
	
	<div class="bdt-wizard-progress-header">
		<ul class="bdt-wizard-progress">
			<li class="bdt-wizard-progress-item active" data-step="welcome"><?php esc_html_e( 'Welcome', 'ultimate-post-kit' ); ?></li>
			<li class="bdt-wizard-progress-item" data-step="features"><?php esc_html_e( 'Choose Features', 'ultimate-post-kit' ); ?></li>
			<li class="bdt-wizard-progress-item" data-step="integration"><?php esc_html_e( 'Integration', 'ultimate-post-kit' ); ?></li>
			<li class="bdt-wizard-progress-item" data-step="finish"><?php esc_html_e( 'Good to Go', 'ultimate-post-kit' ); ?></li>
		</ul>
	</div>
	<div class="bdt-step-content">
		<div class="bdt-wizard-container">
			<?php
			require_once plugin_dir_path( BDTUPK__FILE__ ) . 'includes/setup-wizard/views/welcome.php';
			require_once plugin_dir_path( BDTUPK__FILE__ ) . 'includes/setup-wizard/views/features.php';
			require_once plugin_dir_path( BDTUPK__FILE__ ) . 'includes/setup-wizard/views/integration.php';
			require_once plugin_dir_path( BDTUPK__FILE__ ) . 'includes/setup-wizard/views/good-to-go.php';
			?>
		</div>
	</div>
</div>
```
