-
Notifications
You must be signed in to change notification settings - Fork 6
/
as-speaking.php
38 lines (34 loc) · 1.16 KB
/
as-speaking.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* AlainSchlesser.com Speaking Page Plugin.
*
* @package AlainSchlesser\Speaking
* @author Alain Schlesser <[email protected]>
* @license MIT
* @link https://www.alainschlesser.com/
* @copyright 2017 Alain Schlesser
*
* @wordpress-plugin
* Plugin Name: AlainSchlesser.com Speaking Page Plugin.
* Plugin URI: https://www.alainschlesser.com/
* Description: Custom post type and presentation tools for a page to promote your speaking gigs.
* Version: 0.2.13
* Requires PHP: 5.6
* Author: Alain Schlesser <[email protected]>
* Author URI: https://www.alainschlesser.com/
* Text Domain: as-speaking
* Domain Path: /languages
* License: MIT
* License URI: https://opensource.org/licenses/MIT
*/
namespace AlainSchlesser\Speaking;
// Make sure this file is only run from within WordPress.
defined( 'ABSPATH' ) or die();
// Load Autoloader class and register plugin namespace.
require_once __DIR__ . '/src/Autoloader.php';
( new Autoloader() )
->add_namespace( __NAMESPACE__, __DIR__ . '/src' )
->register();
// Hook plugin into WordPress request lifecycle.
PluginFactory::create()
->register();