| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Genesis Simple Sidebars |
| 4 |
* Plugin URI: https://github.com/studiopress/genesis-simple-sidebars |
| 5 |
* Description: Genesis Simple Sidebars allows you to easily create and use new sidebar widget areas. |
| 6 |
* Version: 2.2.3 |
| 7 |
* Author: StudioPress |
| 8 |
* Author URI: https://www.studiopress.com/ |
| 9 |
* License: GNU General Public License v2.0 (or later) |
| 10 |
* License URI: https://www.opensource.org/licenses/gpl-license.php |
| 11 |
* |
| 12 |
* Text Domain: genesis-simple-sidebars |
| 13 |
* Domain Path: /languages |
| 14 |
* |
| 15 |
* @package genesis-simple-sidebars |
| 16 |
*/ |
| 17 |
|
| 18 |
/** |
| 19 |
* Load the plugin file. |
| 20 |
*/ |
| 21 |
|
| 22 |
if ( ! defined( 'ABSPATH' ) ) { |
| 23 |
exit; |
| 24 |
} |
| 25 |
|
| 26 |
require_once plugin_dir_path( __FILE__ ) . 'genesis-simple-sidebars.php'; |
| 27 |
|