| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Gallery Custom Links |
| 4 |
Plugin URI: https://meowapps.com |
| 5 |
Description: Gallery Custom Links allows you to link images from galleries to a specified URL. Tested with WordPress Gallery, Gutenberg, the Meow Gallery and others. |
| 6 |
Version: 2.3.3 |
| 7 |
Author: Jordy Meow |
| 8 |
Author URI: https://meowapps.com |
| 9 |
Text Domain: gallery-custom-links |
| 10 |
Domain Path: /languages |
| 11 |
|
| 12 |
Dual licensed under the MIT and GPL licenses: |
| 13 |
http://www.opensource.org/licenses/mit-license.php |
| 14 |
http://www.gnu.org/licenses/gpl.html |
| 15 |
*/ |
| 16 |
|
| 17 |
if ( !defined( 'MGCL_VERSION' ) ) { |
| 18 |
define( 'MGCL_VERSION', '2.3.3' ); |
| 19 |
define( 'MGCL_PREFIX', 'mgcl' ); |
| 20 |
define( 'MGCL_DOMAIN', 'gallery-custom-links' ); |
| 21 |
define( 'MGCL_ENTRY', __FILE__ ); |
| 22 |
define( 'MGCL_PATH', dirname( __FILE__ ) ); |
| 23 |
define( 'MGCL_URL', plugin_dir_url( __FILE__ ) ); |
| 24 |
define( 'MGCL_BASENAME', plugin_basename( __FILE__ ) ); |
| 25 |
} |
| 26 |
|
| 27 |
require_once( 'classes/init.php' ); |
| 28 |
|
| 29 |
?> |
| 30 |
|