mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
parent
918ee9e5f9
commit
43ee54a0ee
2 changed files with 8 additions and 4 deletions
|
@ -17,9 +17,13 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Short Description. (use period)
|
* The core plugin file.
|
||||||
*
|
*
|
||||||
* Long Description.
|
* This is the core plugin file that is used to define internationalization,
|
||||||
|
* dashboard-specific hooks, and public-facing site hooks.
|
||||||
|
*
|
||||||
|
* Also maintains the unique identifier of this plugin as well as the current
|
||||||
|
* version of the plugin.
|
||||||
*
|
*
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
* @package Plugin_Name
|
* @package Plugin_Name
|
||||||
|
|
|
@ -45,8 +45,8 @@ register_activation_hook( __FILE__, array( 'Plugin_Name_Activator', 'activate' )
|
||||||
register_activation_hook( __FILE__, array( 'Plugin_Name_Deactivator', 'deactivate' ) );
|
register_activation_hook( __FILE__, array( 'Plugin_Name_Deactivator', 'deactivate' ) );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base class used to define certain functionality and attributes used in both
|
* This is the core plugin file that is used to define internationalization,
|
||||||
* the the dashboard-specific and public-facing functionality.
|
* dashboard-specific hooks, and public-facing site hooks.
|
||||||
*/
|
*/
|
||||||
require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin-name.php';
|
require_once plugin_dir_path( __FILE__ ) . 'includes/class-plugin-name.php';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue