# jc-importer/2.7.14/jc-importer.php

Import WP – CSV &amp; XML Import Export for WordPress, version 2.7.14. 40 lines.

- Page: https://pluginprobe.com/plugins/jc-importer/2.7.14/code/jc-importer.php
- Raw: https://pluginprobe.com/plugins/jc-importer/2.7.14/raw/jc-importer.php
- Modified: 2023-05-10T20:34:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jc-importer/2.7.14/code/jc-importer.php#L10-L20`.

```php
<?php

/**
 * Plugin Name: Import WP
 * Plugin URI: https://www.importwp.com
 * 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.
 * Author: James Collings <james@jclabs.co.uk>
 * Version: 2.7.14 
 * Author URI: https://www.importwp.com
 * Network: True
 */

$iwp_base_path = dirname(__FILE__);

if (!defined('IWP_VERSION')) {
	define('IWP_VERSION', '2.7.14');
}

if (!defined('IWP_MINIMUM_PHP_VERSION')) {
	define('IWP_MINIMUM_PHP_VERSION', '5.4');
}

if (!defined('IWP_POST_TYPE')) {
	define('IWP_POST_TYPE', 'iwp-importer');
}

if (!defined('EWP_POST_TYPE')) {
	define('EWP_POST_TYPE', 'iwp-exporter');
}

if (!defined('IWP_CORE_MIN_PRO_VERSION')) {
	define('IWP_CORE_MIN_PRO_VERSION', '2.6.0');
}

if (version_compare(PHP_VERSION, IWP_MINIMUM_PHP_VERSION, '>=')) {
	require_once $iwp_base_path . '/class/autoload.php';
	require_once $iwp_base_path . '/setup-iwp.php';
	require_once $iwp_base_path . '/functions.php';
}

```
