mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-01 03:12:58 +02:00
16 lines
472 B
PHP
16 lines
472 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Represents the view for the public-facing component of the plugin.
|
||
|
*
|
||
|
* This typically includes any information, if any, that is rendered to the
|
||
|
* frontend of the theme when the plugin is activated.
|
||
|
*
|
||
|
* @package Plugin_Name
|
||
|
* @author Your Name <email@example.com>
|
||
|
* @license GPL-2.0+
|
||
|
* @link http://example.com
|
||
|
* @copyright 2013 Your Name or Company Name
|
||
|
*/
|
||
|
?>
|
||
|
|
||
|
<!-- This file is used to markup the public facing aspect of the plugin. -->
|