| Server IP : 89.108.64.180 / Your IP : 216.73.216.60 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/v-tihvin.ru/wp-content/plugins/wordpress-importer/ |
Upload File : |
<?php
/*
* @wordpress-plugin
* Plugin Name: WordPress Importer
* Plugin URI: https://wordpress.org/plugins/wordpress-importer/
* Description: Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.
* Author: wordpressdotorg
* Author URI: https://wordpress.org/
* Version: 0.9.5
* Requires at least: 5.2
* Requires PHP: 7.2
* Text Domain: wordpress-importer
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
if ( ! defined( 'WP_LOAD_IMPORTERS' ) ) {
return;
}
/** Display verbose errors */
if ( ! defined( 'IMPORT_DEBUG' ) ) {
define( 'IMPORT_DEBUG', WP_DEBUG );
}
/** WordPress Import Administration API */
require_once ABSPATH . 'wp-admin/includes/import.php';
if ( ! class_exists( 'WP_Importer' ) ) {
$class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
if ( file_exists( $class_wp_importer ) ) {
require $class_wp_importer;
}
}
/** Functions missing in older WordPress versions. */
require_once __DIR__ . '/compat.php';
if ( ! class_exists( 'WordPress\XML\XMLProcessor' ) ) {
require_once __DIR__ . '/php-toolkit/load.php';
}
/** WXR_Parser class */
require_once __DIR__ . '/parsers/class-wxr-parser.php';
/** WXR_Parser_SimpleXML class */
require_once __DIR__ . '/parsers/class-wxr-parser-simplexml.php';
/** WXR_Parser_XML class */
require_once __DIR__ . '/parsers/class-wxr-parser-xml.php';
/**
* WXR_Parser_Regex class
* @deprecated 0.9.0 Use WXR_Parser_XML_Processor instead. The WXR_Parser_Regex class
* is no longer used by the importer or maintained with bug fixes. The only
* reason it is still included in the codebase is for backwards compatibility
* with plugins that directly reference it.
*/
require_once __DIR__ . '/parsers/class-wxr-parser-regex.php';
/** WXR_Parser_XML_Processor class */
require_once __DIR__ . '/parsers/class-wxr-parser-xml-processor.php';
/** WP_Import class */
require_once __DIR__ . '/class-wp-import.php';
function wordpress_importer_init() {
load_plugin_textdomain( 'wordpress-importer' );
/**
* WordPress Importer object for registering the import callback
* @global WP_Import $wp_import
*/
$GLOBALS['wp_import'] = new WP_Import();
// phpcs:ignore WordPress.WP.CapitalPDangit
register_importer( 'wordpress', 'WordPress', __( 'Import <strong>posts, pages, comments, custom fields, categories, and tags</strong> from a WordPress export file.', 'wordpress-importer' ), array( $GLOBALS['wp_import'], 'dispatch' ) );
}
add_action( 'admin_init', 'wordpress_importer_init' );