wplr-sync.php
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: Photo Engine (WP/LR Sync) |
| 4 | Plugin URI: https://meowapps.com |
| 5 | Description: Synchronize and maintain your photos, collections, keywords and metadata between Lightroom and WordPress. |
| 6 | Version: 6.5.5 |
| 7 | Author: Jordy Meow |
| 8 | Author URI: https://meowapps.com |
| 9 | Text Domain: wplr-sync |
| 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 | define( 'WPLR_SYNC_VERSION', '6.5.5' ); |
| 18 | define( 'WPLR_SYNC_PREFIX', 'wplr_sync' ); |
| 19 | define( 'WPLR_SYNC_DOMAIN', 'wplr-sync' ); |
| 20 | define( 'WPLR_SYNC_ENTRY', __FILE__ ); |
| 21 | define( 'WPLR_SYNC_PATH', dirname( __FILE__ ) ); |
| 22 | define( 'WPLR_SYNC_URL', plugin_dir_url( __FILE__ ) ); |
| 23 | |
| 24 | require_once( 'classes/init.php'); |
| 25 | |
| 26 | ?> |
| 27 |