PluginProbe
Photo Engine (Media Organizer & Lightroom) / 6.5.1
Photo Engine (Media Organizer & Lightroom) v6.5.1
6.5.5 6.5.4 6.5.3 6.5.2 trunk 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.8.2 0.8.3 0.8.4 0.8.6 0.8.8 1.2.4 1.3.0 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 All 157 releases
wplr-sync / wplr-sync.php

wplr-sync.php in Photo Engine (Media Organizer & Lightroom) 6.5.1, at wplr-sync.php

27 lines 743 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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.1
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.1' );
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