mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-10-31 19:03:00 +02:00
465603b5c8
fixes #61
41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* The WordPress Plugin Boilerplate.
|
|
*
|
|
* A foundation off of which to build well-documented WordPress plugins that also follow
|
|
* WordPress coding standards and PHP best practices.
|
|
*
|
|
* @package Plugin_Name
|
|
* @author Your Name <email@example.com>
|
|
* @license GPL-2.0+
|
|
* @link http://example.com
|
|
* @copyright 2013 Your Name or Company Name
|
|
*
|
|
* @wordpress-plugin
|
|
* Plugin Name: TODO
|
|
* Plugin URI: TODO
|
|
* Description: TODO
|
|
* Version: 1.0.0
|
|
* Author: TODO
|
|
* Author URI: TODO
|
|
* Text Domain: plugin-name-locale
|
|
* License: GPL-2.0+
|
|
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
|
* Domain Path: /lang
|
|
*/
|
|
|
|
// If this file is called directly, abort.
|
|
if ( ! defined( 'WPINC' ) ) {
|
|
die;
|
|
}
|
|
|
|
// TODO: replace `class-plugin-name.php` with the name of the actual plugin's class file
|
|
require_once( plugin_dir_path( __FILE__ ) . 'class-plugin-name.php' );
|
|
|
|
// Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively.
|
|
// TODO: replace Plugin_Name with the name of the plugin defined in `class-plugin-name.php`
|
|
register_activation_hook( __FILE__, array( 'Plugin_Name', 'activate' ) );
|
|
register_deactivation_hook( __FILE__, array( 'Plugin_Name', 'deactivate' ) );
|
|
|
|
// TODO: replace Plugin_Name with the name of the plugin defined in `class-plugin-name.php`
|
|
Plugin_Name::get_instance(); |