| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Plugin Name: Admin Options Pages |
| 5 |
* Plugin URI: https://adminoptionspages.com |
| 6 |
* Description: Create and edit your own options pages with ease. |
| 7 |
* Version: 0.9.9 |
| 8 |
* Author: Johannes van Poelgeest |
| 9 |
* Author URI: https://poolghost.com |
| 10 |
* Requires PHP: 8.0 |
| 11 |
* Tested up to: 7.0.4 |
| 12 |
* Text Domain: admin-options-pages |
| 13 |
* License: GPL-2.0+ |
| 14 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 15 |
*/ |
| 16 |
|
| 17 |
if (!defined('WPINC')) { |
| 18 |
die; |
| 19 |
} |
| 20 |
|
| 21 |
if (!is_admin()) { |
| 22 |
return; |
| 23 |
} |
| 24 |
|
| 25 |
require 'vendor/autoload.php'; |
| 26 |
|
| 27 |
include plugin_dir_path(__FILE__) . 'bootstrap/bootstrap.php'; |
| 28 |
|