2014-04-09 16:22:44 -04:00
|
|
|
<?php
|
2014-04-30 22:55:42 -04:00
|
|
|
|
2014-07-30 14:56:37 -04:00
|
|
|
/**
|
2014-04-09 16:22:44 -04:00
|
|
|
/**
|
2014-04-25 19:00:08 -04:00
|
|
|
* Short Description (no period for file headers)
|
2014-04-11 10:36:57 -04:00
|
|
|
*
|
2014-04-25 19:00:08 -04:00
|
|
|
* Long Description.
|
2014-04-09 16:22:44 -04:00
|
|
|
*
|
2014-07-30 14:56:37 -04:00
|
|
|
* @link URL
|
|
|
|
* @since 1.0.0
|
|
|
|
* @package Plugin_Name
|
2014-04-09 16:22:44 -04:00
|
|
|
*
|
|
|
|
* @wordpress-plugin
|
2014-05-05 00:16:52 -04:00
|
|
|
* Plugin Name: WordPress Plugin Boilerplate
|
2014-07-29 15:48:33 -04:00
|
|
|
* Plugin URI: http://example.com/plugin-name-uri/
|
2014-05-03 15:07:24 -04:00
|
|
|
* Description: This is a short description of what the plugin does. It's displayed in the WordPress dashboard.
|
|
|
|
* Version: 1.0.0
|
|
|
|
* Author: Your Name or Your Company
|
2014-07-29 15:48:33 -04:00
|
|
|
* Author URI: http://example.com/
|
2014-07-30 13:58:41 -04:00
|
|
|
* Text Domain: plugin-name
|
2014-04-09 16:22:44 -04:00
|
|
|
* License: GPL-2.0+
|
|
|
|
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
* Domain Path: /languages
|
|
|
|
*/
|
|
|
|
|
|
|
|
// If this file is called directly, abort.
|
|
|
|
if ( ! defined( 'WPINC' ) ) {
|
|
|
|
die;
|
2014-04-11 10:36:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-29 15:48:33 -04:00
|
|
|
* The code that runs during plugin activation.
|
2014-04-11 10:36:57 -04:00
|
|
|
*/
|
2014-04-26 17:42:21 -04:00
|
|
|
require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin-name-activator.php';
|
2014-04-11 10:36:57 -04:00
|
|
|
|
|
|
|
/**
|
2014-07-29 15:48:33 -04:00
|
|
|
* The code that runs during plugin deactivation.
|
2014-04-11 10:36:57 -04:00
|
|
|
*/
|
2014-04-26 17:42:21 -04:00
|
|
|
require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin-name-deactivator.php';
|
2014-04-11 10:36:57 -04:00
|
|
|
|
|
|
|
/** This action is documented in includes/class-plugin-name-activator.php */
|
|
|
|
register_activation_hook( __FILE__, array( 'Plugin_Name_Activator', 'activate' ) );
|
|
|
|
|
|
|
|
/** This action is documented in includes/class-plugin-name-deactivator.php */
|
2014-04-25 18:39:31 -04:00
|
|
|
register_activation_hook( __FILE__, array( 'Plugin_Name_Deactivator', 'deactivate' ) );
|
2014-05-03 15:26:22 -04:00
|
|
|
|
2014-05-05 00:16:52 -04:00
|
|
|
/**
|
2014-07-29 15:48:33 -04:00
|
|
|
* The base class used to define certain functionality and attributes used in both
|
|
|
|
* the the dashboard-specific and public-facing functionality.
|
2014-05-05 00:16:52 -04:00
|
|
|
*/
|
2014-05-08 18:09:50 -04:00
|
|
|
require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin-name.php';
|
2014-05-03 15:26:22 -04:00
|
|
|
|
2014-05-05 00:16:52 -04:00
|
|
|
/**
|
2014-06-26 16:19:57 -04:00
|
|
|
* Short description. (use period)
|
|
|
|
*
|
|
|
|
* Long description.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
2014-05-05 00:16:52 -04:00
|
|
|
*/
|
2014-05-08 23:33:47 -04:00
|
|
|
function run_plugin_name() {
|
2014-05-03 15:26:22 -04:00
|
|
|
|
2014-05-08 23:33:47 -04:00
|
|
|
$plugin = new Plugin_Name();
|
|
|
|
$plugin->run();
|
2014-05-03 15:26:22 -04:00
|
|
|
|
2014-05-08 23:33:47 -04:00
|
|
|
}
|
2014-05-08 18:09:50 -04:00
|
|
|
|
2014-05-08 23:33:47 -04:00
|
|
|
run_plugin_name();
|