mirror of
https://github.com/10h30/genesis-simple-sidebars.git
synced 2026-06-05 15:08:34 +09:00
27 lines
694 B
PHP
27 lines
694 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: Genesis Simple Sidebars
|
|
* Plugin URI: https://github.com/studiopress/genesis-simple-sidebars
|
|
* Description: Genesis Simple Sidebars allows you to easily create and use new sidebar widget areas.
|
|
* Version: 2.2.1
|
|
* Author: StudioPress
|
|
* Author URI: https://www.studiopress.com/
|
|
* License: GNU General Public License v2.0 (or later)
|
|
* License URI: https://www.opensource.org/licenses/gpl-license.php
|
|
*
|
|
* Text Domain: genesis-simple-sidebars
|
|
* Domain Path: /languages
|
|
*
|
|
* @package genesis-simple-sidebars
|
|
*/
|
|
|
|
/**
|
|
* Load the plugin file.
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
require_once plugin_dir_path( __FILE__ ) . 'genesis-simple-sidebars.php';
|