# polylang/2.8.3/modules/wizard/load.php

Polylang, version 2.8.3. 15 lines.

- Page: https://pluginprobe.com/plugins/polylang/2.8.3/code/modules/wizard/load.php
- Raw: https://pluginprobe.com/plugins/polylang/2.8.3/raw/modules/wizard/load.php
- Modified: 2020-10-13T06:58:22+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/polylang/2.8.3/code/modules/wizard/load.php#L10-L20`.

```php
<?php
/**
 * Loads the setup wizard.
 *
 * @package Polylang
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Don't access directly
};

if ( $polylang instanceof PLL_Admin_Base ) {
	$polylang->wizard = new PLL_Wizard( $polylang );
}

```
