mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-23 12:23:54 +02:00
24 lines
544 B
PHP
24 lines
544 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Represents the view for the administration dashboard.
|
||
|
*
|
||
|
* This includes the header, options, and other information that should provide
|
||
|
* The User Interface to the end user.
|
||
|
*
|
||
|
* @package Plugin_Name
|
||
|
* @author Your Name <email@example.com>
|
||
|
* @license GPL-2.0+
|
||
|
* @link http://example.com
|
||
|
* @copyright 2013 Your Name or Company Name
|
||
|
*/
|
||
|
?>
|
||
|
|
||
|
<div class="wrap">
|
||
|
|
||
|
<?php screen_icon(); ?>
|
||
|
<h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
|
||
|
|
||
|
<!-- TODO: Provide markup for your options page here. -->
|
||
|
|
||
|
</div>
|