26 lines
525 B
PHP
26 lines
525 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 DrawAttention
|
|
* @author Nathan Tyler <support@wpdrawattention.com>
|
|
* @license GPL-2.0+
|
|
* @link http://example.com
|
|
* @copyright 2014 Tyler Digital
|
|
*/
|
|
?>
|
|
|
|
<div class="wrap cmb2-wrap">
|
|
<div class="cmb2-metabox">
|
|
|
|
<h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
|
|
|
|
<?php
|
|
|
|
?>
|
|
</div>
|
|
</div>
|