PluginProbe
Import WP – CSV & XML Import Export for WordPress / 2.7.12
Import WP – CSV & XML Import Export for WordPress v2.7.12
2.15.1 2.15.0 2.14.24 2.14.23 2.7.0 2.7.1 2.7.10 2.7.11 2.7.12 2.7.13 2.7.14 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.9.0 2.9.1 All 144 releases
jc-importer / jc-importer.php

jc-importer.php in Import WP – CSV & XML Import Export for WordPress 2.7.12, at jc-importer.php

40 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Plugin Name: Import WP
5 * Plugin URI: https://www.importwp.com
6 * Description: Import WP is a powerful Importer & Exporter with a visual data selection tool that makes it easy to Export or Import any XML or CSV file to WordPress.
7 * Author: James Collings <[email protected]>
8 * Version: 2.7.12
9 * Author URI: https://www.importwp.com
10 * Network: True
11 */
12
13 $iwp_base_path = dirname(__FILE__);
14
15 if (!defined('IWP_VERSION')) {
16 define('IWP_VERSION', '2.7.12');
17 }
18
19 if (!defined('IWP_MINIMUM_PHP_VERSION')) {
20 define('IWP_MINIMUM_PHP_VERSION', '5.4');
21 }
22
23 if (!defined('IWP_POST_TYPE')) {
24 define('IWP_POST_TYPE', 'iwp-importer');
25 }
26
27 if (!defined('EWP_POST_TYPE')) {
28 define('EWP_POST_TYPE', 'iwp-exporter');
29 }
30
31 if (!defined('IWP_CORE_MIN_PRO_VERSION')) {
32 define('IWP_CORE_MIN_PRO_VERSION', '2.6.0');
33 }
34
35 if (version_compare(PHP_VERSION, IWP_MINIMUM_PHP_VERSION, '>=')) {
36 require_once $iwp_base_path . '/class/autoload.php';
37 require_once $iwp_base_path . '/setup-iwp.php';
38 require_once $iwp_base_path . '/functions.php';
39 }
40