| 1 |
<?php |
| 2 |
/** |
| 3 |
* This is a Hello World test plugin for WP Super Duper Class. |
| 4 |
* |
| 5 |
* @wordpress-plugin |
| 6 |
* Plugin Name: Super Duper - Examples |
| 7 |
* Description: This is a Hello World test plugin for WP Super Duper Class. |
| 8 |
* Version: 1.2.36 |
| 9 |
* Author: AyeCode |
| 10 |
* Author URI: https://ayecode.io |
| 11 |
* Text Domain: super-duper |
| 12 |
* Domain Path: /languages |
| 13 |
* Requires at least: 6.0 |
| 14 |
* Tested up to: 7.0 |
| 15 |
*/ |
| 16 |
|
| 17 |
if ( ! defined( 'ABSPATH' ) ) { |
| 18 |
exit; |
| 19 |
} |
| 20 |
|
| 21 |
if ( ! class_exists( 'WP_Super_Duper' ) ) { |
| 22 |
// include the class if needed |
| 23 |
include_once( dirname( __FILE__ ) . "/wp-super-duper.php" ); |
| 24 |
} |
| 25 |
|
| 26 |
/* |
| 27 |
* Hello world example. |
| 28 |
*/ |
| 29 |
include_once( dirname( __FILE__ ) . "/hello-world.php" ); |
| 30 |
|
| 31 |
/* |
| 32 |
* Map example. |
| 33 |
*/ |
| 34 |
include_once( dirname( __FILE__ ) . "/map.php" ); |
| 35 |
|
| 36 |
|
| 37 |
if ( ! function_exists( 'sd_get_class_build_keys' ) ) { |
| 38 |
include_once( dirname( __FILE__ ) . "/sd-functions.php" ); |
| 39 |
} |