| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Meow Gallery |
| 4 |
Plugin URI: https://meowapps.com |
| 5 |
Description: Gallery system built for photographers, by photographers. |
| 6 |
Version: 5.5.3 |
| 7 |
Author: Jordy Meow |
| 8 |
Author URI: https://meowapps.com |
| 9 |
Text Domain: meow-gallery |
| 10 |
Domain Path: /languages |
| 11 |
|
| 12 |
Originally developed for two of my websites: |
| 13 |
- Jordy Meow (https://offbeatjapan.org) |
| 14 |
- Haikyo (https://haikyo.org) |
| 15 |
*/ |
| 16 |
|
| 17 |
if ( !defined( 'MGL_VERSION' ) ) { |
| 18 |
define( 'MGL_VERSION', '5.5.3' ); |
| 19 |
define( 'MGL_PREFIX', 'mgl' ); |
| 20 |
define( 'MGL_DOMAIN', 'meow-gallery' ); |
| 21 |
define( 'MGL_ENTRY', __FILE__ ); |
| 22 |
define( 'MGL_PATH', dirname( __FILE__ ) ); |
| 23 |
define( 'MGL_URL', plugin_dir_url( __FILE__ ) ); |
| 24 |
define( 'MGL_ITEM_ID', 6232 ); |
| 25 |
} |
| 26 |
|
| 27 |
require_once( 'classes/init.php'); |
| 28 |
|
| 29 |
?> |
| 30 |
|