# userswp/1.2.74/vendor/ayecode/wp-super-duper/sd-plugin.php

UsersWP – Front-end login form, User Registration, User Profile &amp; Members Directory plugin for WP, version 1.2.74. 39 lines.

- Page: https://pluginprobe.com/plugins/userswp/1.2.74/code/vendor/ayecode/wp-super-duper/sd-plugin.php
- Raw: https://pluginprobe.com/plugins/userswp/1.2.74/raw/vendor/ayecode/wp-super-duper/sd-plugin.php
- Modified: 2026-09-16T15:29:56+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/userswp/1.2.74/code/vendor/ayecode/wp-super-duper/sd-plugin.php#L10-L20`.

```php
<?php
/**
 * This is a Hello World test plugin for WP Super Duper Class.
 *
 * @wordpress-plugin
 * Plugin Name: Super Duper - Examples
 * Description: This is a Hello World test plugin for WP Super Duper Class.
 * Version: 1.2.36
 * Author: AyeCode
 * Author URI: https://ayecode.io
 * Text Domain: super-duper
 * Domain Path: /languages
 * Requires at least: 6.0
 * Tested up to: 7.0
 */

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

if ( ! class_exists( 'WP_Super_Duper' ) ) {
	// include the class if needed
	include_once( dirname( __FILE__ ) . "/wp-super-duper.php" );
}

/*
 * Hello world example.
 */
include_once( dirname( __FILE__ ) . "/hello-world.php" );

/*
 * Map example.
 */
include_once( dirname( __FILE__ ) . "/map.php" );


if ( ! function_exists( 'sd_get_class_build_keys' ) ) {
	include_once( dirname( __FILE__ ) . "/sd-functions.php" );
}
```
