PluginProbe
Gallery Custom Links / trunk
Gallery Custom Links vtrunk
2.3.3 2.3.2 2.3.1 trunk 0.0.1 0.0.2 1.0.0 1.0.2 1.0.4 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 All 55 releases
gallery-custom-links / gallery-custom-links.php

gallery-custom-links.php in Gallery Custom Links trunk, at gallery-custom-links.php

30 lines 900 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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