mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
Merge branch 'develop' of https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate into develop
This commit is contained in:
commit
ef63ff4a91
4 changed files with 11 additions and 26 deletions
|
@ -3,22 +3,14 @@
|
|||
/**
|
||||
* Provide a dashboard view for the plugin
|
||||
*
|
||||
* This file is used to markup the public-facing aspects of the plugin.
|
||||
*
|
||||
* @link http://example.com
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/admin/partials
|
||||
*/
|
||||
|
||||
/**
|
||||
* Provide a dashboard view for the plugin.
|
||||
*
|
||||
* This file is used to markup the public-facing aspects of the plugin.
|
||||
*
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/admin/partials
|
||||
* @author Your Name <email@example.com>
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- This file should primarily consist of HTML with a little bit of PHP. -->
|
||||
|
|
|
@ -19,9 +19,9 @@
|
|||
* Version: 1.0.0
|
||||
* Author: Your Name or Your Company
|
||||
* Author URI: http://example.com/
|
||||
* Text Domain: plugin-name
|
||||
* License: GPL-2.0+
|
||||
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
||||
* Text Domain: plugin-name
|
||||
* Domain Path: /languages
|
||||
*/
|
||||
|
||||
|
|
|
@ -3,22 +3,14 @@
|
|||
/**
|
||||
* Provide a public-facing view for the plugin
|
||||
*
|
||||
* This file is used to markup the public-facing aspects of the plugin.
|
||||
*
|
||||
* @link http://example.com
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/public/partials
|
||||
*/
|
||||
|
||||
/**
|
||||
* Provide a public-facing view for the plugin.
|
||||
*
|
||||
* This file is used to markup the public-facing aspects of the plugin.
|
||||
*
|
||||
* @package Plugin_Name
|
||||
* @subpackage Plugin_Name/public/partials
|
||||
* @author Your Name <email@example.com>
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- This file should primarily consist of HTML with a little bit of PHP. -->
|
||||
<!-- This file should primarily consist of HTML with a little bit of PHP. -->
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Short Description (no period for file headers)
|
||||
* Short Description (no period)
|
||||
*
|
||||
* Long Description.
|
||||
*
|
||||
* @package Plugin_Name
|
||||
* @link http://example.com
|
||||
* @since 1.0.0
|
||||
* @link http://example.com
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @package Plugin_Name
|
||||
*/
|
||||
|
||||
// If uninstall not called from WordPress, then exit.
|
||||
|
|
Loading…
Reference in a new issue