wordpress-helpers.php
29 lines
| 1 | <?php |
| 2 | /** |
| 3 | * WordPress Helpers |
| 4 | * |
| 5 | * @package MyThemeShop\Helpers |
| 6 | * @copyright Copyright (C) 2018, MyThemeShop - info@mythemeshop.com |
| 7 | * @link http://mythemeshop.com |
| 8 | * @since 1.0.0 |
| 9 | * |
| 10 | * @wordpress-plugin |
| 11 | * Plugin Name: WordPress Helpers |
| 12 | * Version: 1.1.22 |
| 13 | * Plugin URI: http://mythemeshop.com/wordpress-helpers/ |
| 14 | * Description: Collection of utilities required during development of a plugin or theme for WordPress. Built for developers by developers. |
| 15 | * Author: MyThemeShop |
| 16 | * Author URI: http://mythemeshop.com/ |
| 17 | * License: GPL-2.0+ |
| 18 | * License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 19 | * Requires at least: 5.0 |
| 20 | * Tested up to: 5.7 |
| 21 | */ |
| 22 | |
| 23 | defined( 'ABSPATH' ) || exit; |
| 24 | |
| 25 | /** |
| 26 | * Class Autoloading. |
| 27 | */ |
| 28 | include dirname( __FILE__ ) . '/vendor/autoload.php'; |
| 29 |