PluginProbe
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP / 1.2.74
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP v1.2.74
1.2.74 1.2.73 1.2.72 1.2.71 1.2.70 1.2.69 1.2.68 1.2.67 1.2.66 1.2.65 1.2.64 1.2.63 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 All 174 releases
userswp / vendor / ayecode / wp-super-duper / sd-plugin.php

sd-plugin.php in UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP 1.2.74, at vendor/ayecode/wp-super-duper/sd-plugin.php

39 lines 856 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }