You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
515 B
25 lines
515 B
<?php
|
|
/**
|
|
* Plugin Name: Stepper
|
|
* Plugin URI: PLUGIN SITE HERE
|
|
* Description: PLUGIN DESCRIPTION HERE
|
|
* Author: Philipp Lang
|
|
* Author URI: YOUR SITE HERE
|
|
* Text Domain: stepper
|
|
* Domain Path: /languages
|
|
* Version: 0.1.0
|
|
*
|
|
* @package Stepper
|
|
*/
|
|
|
|
require_once(__DIR__.'/vendor/autoload.php');
|
|
|
|
use Zoomyboy\Stepper\Stepper;
|
|
|
|
|
|
if (!is_admin()) {
|
|
$stepper = new Stepper();
|
|
$stepper->url = plugin_dir_url(__FILE__);
|
|
$stepper->initFrontend();
|
|
}
|
|
|