BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
CTR
/
wp-content
/
themes
/
porto
/
inc
/
plugins
/
importer
📤 Upload
📝 New File
📁 New Folder
Close
Editing: wordpress-importer.php
<?php /* Plugin Name: WordPress Importer Plugin URI: http://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: http://wordpress.org/ Version: 0.6.3 Text Domain: wordpress-importer License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html */ if ( ! defined( 'WP_LOAD_IMPORTERS' ) ) { return; } /** Display verbose errors */ define( 'IMPORT_DEBUG', false ); // Load Importer 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; } } // include WXR file parsers require PORTO_PLUGINS . '/importer/parsers.php'; /** * WordPress Importer class for managing the import process of a WXR file * * @package WordPress * @subpackage Importer */ if ( class_exists( 'WP_Importer' ) ) { class WP_Import extends WP_Importer { var $max_wxr_version = 1.2; // max. supported WXR version var $id; // WXR attachment ID // information to import from WXR file var $version; var $authors = array(); var $posts = array(); var $terms = array(); var $categories = array(); var $tags = array(); var $base_url = ''; // mappings from old information to new var $processed_authors = array(); var $author_mapping = array(); var $processed_terms = array(); var $processed_posts = array(); var $post_orphans = array(); var $processed_menu_items = array(); var $menu_item_orphans = array(); var $missing_menu_items = array(); var $fetch_attachments = false; var $url_remap = array(); var $featured_images = array(); /** * Registered callback function for the WordPress Importer * * Manages the three separate stages of the WXR import process */ function dispatch() { $this->header(); $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step']; switch ( $step ) { case 0: $this->greet(); break; case 1: check_admin_referer( 'import-upload' ); if ( $this->handle_upload() ) { $this->import_options(); } break; case 2: check_admin_referer( 'import-wordpress' ); $this->fetch_attachments = ( ! empty( $_POST['fetch_attachments'] ) && $this->allow_fetch_attachments() ); $this->id = (int) $_POST['import_id']; $file = get_attached_file( $this->id ); set_time_limit( 0 ); $this->import( $file ); break; } $this->footer(); } /** * The main controller for the actual import stage. * * @param string $file Path to the WXR file for importing */ function import( $file, $process = 'import_start' ) { add_filter( 'import_post_meta_key', array( $this, 'is_valid_meta_key' ) ); add_filter( 'http_request_timeout', array( $this, 'bump_request_timeout' ) ); $this->import_start( $file ); $this->get_author_mapping(); wp_suspend_cache_invalidation( true ); if ( 'import_start' == $process ) { global $wpdb; // register product attributes $demo = ( isset( $_POST['demo'] ) && $_POST['demo'] ) ? sanitize_text_field( $_POST['demo'] ) : 'landing'; $extra_demos = Porto_Theme_Setup_Wizard::get_instance()->porto_extra_demos(); if ( ! in_array( $demo, $extra_demos ) && function_exists( 'wc_get_attribute_taxonomies' ) ) { $attribute_names = array( 'Color', 'Size', 'Make', 'Model', 'Product Year' ); // if ( 'shop53' == $demo || 'elementor-shop53' == $demo ) { // unset( $attribute_names[2] ); // } if ( 'shop48' == $demo || 'elementor-shop48' == $demo ) { $attribute_names = array_merge( $attribute_names, array( 'Center Stone', 'Diamond Clarity', 'Diamond Color', 'Meta', 'Metal Color', 'Metal Finish', 'Metal Type', 'Stone Shape', 'Total Diamond Weight', ) ); } else if ( 'shop49' == $demo || 'elementor-shop49' == $demo ) { $attribute_names = array_merge( $attribute_names, array( 'Arm Height', 'Frame', 'Interior Seat Width', 'Leg Height', 'Overall Dimensions', 'Product Weight', 'Seat', 'Seat Depth', 'Seat Height', ) ); } $registered_attrs = array(); delete_transient( 'wc_attribute_taxonomies' ); foreach ( wc_get_attribute_taxonomies() as $attr ) { $attr = (array) $attr; $registered_attrs[] = $attr['attribute_label']; } foreach ( $attribute_names as $attribute_name ) { if ( ! in_array( $attribute_name, $registered_attrs ) ) { $attribute = array( 'attribute_label' => $attribute_name, 'attribute_name' => strtolower( $attribute_name ), 'attribute_type' => 'select', 'attribute_orderby' => 'menu_order', 'attribute_public' => 0, ); if ( 'Color' === $attribute_name ) { $attribute['attribute_type'] = 'color'; } elseif ( 'Size' === $attribute_name ) { $attribute['attribute_type'] = 'label'; } elseif ( 'Make' === $attribute_name || 'Model' === $attribute_name || 'Product Year' === $attribute_name ) { $attribute['attribute_type'] = 'label'; } elseif ( 'Metal' === $attribute_name ) { $attribute['attribute_type'] = 'image'; } if ( 'Product Year' === $attribute_name ) { $attribute['attribute_name'] = 'product-year'; } elseif ( 'Center Stone' === $attribute_name ) { $attribute['attribute_name'] = 'center-stone'; } elseif ( 'Diamond Clarity' === $attribute_name ) { $attribute['attribute_name'] = 'diamond-clarity'; } elseif ( 'Diamond Color' === $attribute_name ) { $attribute['attribute_name'] = 'diamond-color'; } elseif ( 'Metal Color' === $attribute_name ) { $attribute['attribute_name'] = 'metal-color'; } elseif ( 'Metal Finish' === $attribute_name ) { $attribute['attribute_name'] = 'metal-finish'; } elseif ( 'Metal Type' === $attribute_name ) { $attribute['attribute_name'] = 'metal-type'; } elseif ( 'Stone Shape' === $attribute_name ) { $attribute['attribute_name'] = 'stone-shape'; } elseif ( 'Total Diamond Weight' === $attribute_name ) { $attribute['attribute_name'] = 'total-diamond-weight'; } if ( 'Arm Height' === $attribute_name ) { $attribute['attribute_name'] = 'arm-height'; } elseif ( 'Frame' === $attribute_name ) { $attribute['attribute_name'] = 'frame'; } elseif ( 'Interior Seat Width' === $attribute_name ) { $attribute['attribute_name'] = 'interior-seat-width'; } elseif ( 'Leg Height' === $attribute_name ) { $attribute['attribute_name'] = 'leg-height'; } elseif ( 'Overall Dimensions' === $attribute_name ) { $attribute['attribute_name'] = 'overall-dimensions'; } elseif ( 'Product Weight' === $attribute_name ) { $attribute['attribute_name'] = 'product-weight'; } elseif ( 'Seat' === $attribute_name ) { $attribute['attribute_name'] = 'seat'; } elseif ( 'Seat Depth' === $attribute_name ) { $attribute['attribute_name'] = 'seat-depth'; } elseif ( 'Seat Height' === $attribute_name ) { $attribute['attribute_name'] = 'seat-height'; } $wpdb->insert( $wpdb->prefix . 'woocommerce_attribute_taxonomies', $attribute ); delete_transient( 'wc_attribute_taxonomies' ); } } } // tax meta tables $taxonomies = array( 'category', 'member_cat', 'portfolio_cat', 'product_cat' ); $sql = ''; foreach ( $taxonomies as $taxonomy ) { $table_name = $wpdb->prefix . $taxonomy . 'meta'; $variable_name = $taxonomy . 'meta'; $wpdb->$variable_name = $table_name; if ( ! empty( $wpdb->charset ) ) { $charset_collate = "DEFAULT CHARACTER SET {$wpdb->charset}"; } if ( ! empty( $wpdb->collate ) ) { $charset_collate .= " COLLATE {$wpdb->collate}"; } if ( ! $wpdb->get_var( $wpdb->prepare( 'SHOW TABLES LIKE %s', $table_name ) ) == $table_name ) { $sql .= "CREATE TABLE {$table_name} ( meta_id bigint(20) NOT NULL AUTO_INCREMENT, {$taxonomy}_id bigint(20) NOT NULL default 0, meta_key varchar(255) DEFAULT NULL, meta_value longtext DEFAULT NULL, UNIQUE KEY meta_id (meta_id) ) {$charset_collate};"; } } require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); dbDelta( $sql ); $this->process_categories(); $this->process_tags(); wp_suspend_cache_invalidation( false ); wp_defer_term_counting( false ); wp_defer_comment_counting( false ); return true; } else { $this->process_terms(); $this->process_posts(); wp_suspend_cache_invalidation( false ); // update incorrect/missing information in the DB $this->backfill_parents(); $this->backfill_attachment_urls(); $this->remap_featured_images(); $this->import_end(); } } /** * Parses the WXR file and prepares us for the task of processing parsed data * * @param string $file Path to the WXR file for importing */ function import_start( $file ) { if ( ! is_file( $file ) ) { echo '<p><strong>' . esc_html__( 'Sorry, there has been an error.', 'porto' ) . '</strong><br />'; esc_html_e( 'The file does not exist, please try again.', 'porto' ) . '</p>'; $this->footer(); die(); } $import_data = $this->parse( $file ); if ( is_wp_error( $import_data ) ) { echo '<p><strong>' . esc_html__( 'Sorry, there has been an error.', 'porto' ) . '</strong><br />'; echo esc_html( $import_data->get_error_message() ) . '</p>'; $this->footer(); die(); } $nav_items = array(); $posts = array(); foreach ( $import_data['posts'] as $post ) { if ( 'nav_menu_item' == $post['post_type'] ) { $nav_items[] = $post; } else { $posts[] = $post; } } $posts = array_merge( $posts, $nav_items ); $this->version = $import_data['version']; $this->get_authors_from_import( $import_data ); $this->posts = $posts; $this->terms = $import_data['terms']; $this->categories = $import_data['categories']; $this->tags = $import_data['tags']; $this->base_url = esc_url( $import_data['base_url'] ); wp_defer_term_counting( true ); wp_defer_comment_counting( true ); do_action( 'import_start' ); } /** * Performs post-import cleanup of files and the cache */ function import_end() { wp_import_cleanup( $this->id ); wp_cache_flush(); foreach ( get_taxonomies() as $tax ) { delete_option( "{$tax}_children" ); _get_term_hierarchy( $tax ); } wp_defer_term_counting( false ); wp_defer_comment_counting( false ); echo '<p>' . esc_html__( 'All done.', 'porto' ) . ' <a href="' . esc_url( admin_url() ) . '">' . esc_html__( 'Have fun!', 'porto' ) . '</a>' . '</p>'; echo '<p>' . esc_html__( 'Remember to update the passwords and roles of imported users.', 'porto' ) . '</p>'; do_action( 'import_end' ); } /** * Handles the WXR upload and initial parsing of the file to prepare for * displaying author import options * * @return bool False if error uploading or invalid file, true otherwise */ function handle_upload() { $file = wp_import_handle_upload(); if ( isset( $file['error'] ) ) { echo '<p><strong>' . esc_html__( 'Sorry, there has been an error.', 'porto' ) . '</strong><br />'; echo esc_html( $file['error'] ) . '</p>'; return false; } elseif ( ! file_exists( $file['file'] ) ) { echo '<p><strong>' . esc_html__( 'Sorry, there has been an error.', 'porto' ) . '</strong><br />'; /* translators: %s: uploaded file path */ printf( porto_strip_script_tags( __( 'The export file could not be found at <code>%s</code>. It is likely that this was caused by a permissions problem.', 'porto' ) ), esc_html( $file['file'] ) ); echo '</p>'; return false; } $this->id = (int) $file['id']; $import_data = $this->parse( $file['file'] ); if ( is_wp_error( $import_data ) ) { echo '<p><strong>' . esc_html__( 'Sorry, there has been an error.', 'porto' ) . '</strong><br />'; echo esc_html( $import_data->get_error_message() ) . '</p>'; return false; } $this->version = $import_data['version']; if ( $this->version > $this->max_wxr_version ) { echo '<div class="error"><p><strong>'; /* translators: %s: import file version */ printf( esc_html__( 'This WXR file (version %s) may not be supported by this version of the importer. Please consider updating.', 'porto' ), esc_html( $import_data['version'] ) ); echo '</strong></p></div>'; } $this->get_authors_from_import( $import_data ); return true; } /** * Retrieve authors from parsed WXR data * * Uses the provided author information from WXR 1.1 files * or extracts info from each post for WXR 1.0 files * * @param array $import_data Data returned by a WXR parser */ function get_authors_from_import( $import_data ) { if ( ! empty( $import_data['authors'] ) ) { $this->authors = $import_data['authors']; // no author information, grab it from the posts } else { foreach ( $import_data['posts'] as $post ) { $login = sanitize_user( $post['post_author'], true ); if ( empty( $login ) ) { /* translators: %s: post author */ printf( esc_html__( 'Failed to import author %s. Their posts will be attributed to the current user.', 'porto' ), esc_html( $post['post_author'] ) ); echo '<br />'; continue; } if ( ! isset( $this->authors[ $login ] ) ) { $this->authors[ $login ] = array( 'author_login' => $login, 'author_display_name' => $post['post_author'], ); } } } } /** * Display pre-import options, author importing/mapping and option to * fetch attachments */ function import_options() { $j = 0; ?> <form action="<?php echo esc_url( admin_url( 'admin.php?import=wordpress&step=2' ) ); ?>" method="post"> <?php wp_nonce_field( 'import-wordpress' ); ?> <input type="hidden" name="import_id" value="<?php echo esc_attr( $this->id ); ?>" /> <?php if ( ! empty( $this->authors ) ) : ?> <h3><?php esc_html_e( 'Assign Authors', 'porto' ); ?></h3> <p><?php esc_html_e( 'To make it easier for you to edit and save the imported content, you may want to reassign the author of the imported item to an existing user of this site. For example, you may want to import all the entries as <code>admin</code>s entries.', 'porto' ); ?></p> <?php if ( $this->allow_create_users() ) : ?> <?php /* translators: %s: default role name */ ?> <p><?php printf( esc_html__( 'If a new user is created by WordPress, a new password will be randomly generated and the new user’s role will be set as %s. Manually changing the new user’s details will be necessary.', 'porto' ), esc_html( get_option( 'default_role' ) ) ); ?></p> <?php endif; ?> <ol id="authors"> <?php foreach ( $this->authors as $author ) : ?> <li><?php $this->author_select( $j++, $author ); ?></li> <?php endforeach; ?> </ol> <?php endif; ?> <?php if ( $this->allow_fetch_attachments() ) : ?> <h3><?php esc_html_e( 'Import Attachments', 'porto' ); ?></h3> <p> <input type="checkbox" value="1" name="fetch_attachments" id="import-attachments" /> <label for="import-attachments"><?php esc_html_e( 'Download and import file attachments', 'porto' ); ?></label> </p> <?php endif; ?> <p class="submit"><input type="submit" class="button" value="<?php esc_attr_e( 'Submit', 'porto' ); ?>" /></p> </form> <?php } /** * Display import options for an individual author. That is, either create * a new user based on import info or map to an existing user * * @param int $n Index for each author in the form * @param array $author Author information, e.g. login, display name, email */ function author_select( $n, $author ) { esc_html_e( 'Import author:', 'porto' ); echo ' <strong>' . esc_html( $author['author_display_name'] ); if ( '1.0' != $this->version ) { echo ' (' . esc_html( $author['author_login'] ) . ')'; } echo '</strong><br />'; if ( '1.0' != $this->version ) { echo '<div style="margin-left:18px">'; } $create_users = $this->allow_create_users(); if ( $create_users ) { if ( '1.0' != $this->version ) { esc_html_e( 'or create new user with login name:', 'porto' ); $value = ''; } else { esc_html_e( 'as a new user:', 'porto' ); $value = esc_attr( sanitize_user( $author['author_login'], true ) ); } echo ' <input type="text" name="user_new[' . $n . ']" value="' . $value . '" /><br />'; } if ( ! $create_users && '1.0' == $this->version ) { esc_html_e( 'assign posts to an existing user:', 'porto' ); } else { esc_html_e( 'or assign posts to an existing user:', 'porto' ); } wp_dropdown_users( array( 'name' => "user_map[$n]", 'multi' => true, 'show_option_all' => __( '- Select -', 'porto' ), ) ); echo '<input type="hidden" name="imported_authors[' . $n . ']" value="' . esc_attr( $author['author_login'] ) . '" />'; if ( '1.0' != $this->version ) { echo '</div>'; } } /** * Map old author logins to local user IDs based on decisions made * in import options form. Can map to an existing user, create a new user * or falls back to the current user in case of error with either of the previous */ function get_author_mapping() { if ( ! isset( $_POST['imported_authors'] ) ) { return; } $create_users = $this->allow_create_users(); foreach ( (array) $_POST['imported_authors'] as $i => $old_login ) { // Multisite adds strtolower to sanitize_user. Need to sanitize here to stop breakage in process_posts. $santized_old_login = sanitize_user( $old_login, true ); $old_id = isset( $this->authors[ $old_login ]['author_id'] ) ? intval( $this->authors[ $old_login ]['author_id'] ) : false; if ( ! empty( $_POST['user_map'][ $i ] ) ) { $user = get_userdata( intval( $_POST['user_map'][ $i ] ) ); if ( isset( $user->ID ) ) { if ( $old_id ) { $this->processed_authors[ $old_id ] = $user->ID; } $this->author_mapping[ $santized_old_login ] = $user->ID; } } elseif ( $create_users ) { if ( ! empty( $_POST['user_new'][ $i ] ) ) { $user_id = wp_create_user( $_POST['user_new'][ $i ], wp_generate_password() ); } elseif ( '1.0' != $this->version ) { $user_data = array( 'user_login' => $old_login, 'user_pass' => wp_generate_password(), 'user_email' => isset( $this->authors[ $old_login ]['author_email'] ) ? $this->authors[ $old_login ]['author_email'] : '', 'display_name' => $this->authors[ $old_login ]['author_display_name'], 'first_name' => isset( $this->authors[ $old_login ]['author_first_name'] ) ? $this->authors[ $old_login ]['author_first_name'] : '', 'last_name' => isset( $this->authors[ $old_login ]['author_last_name'] ) ? $this->authors[ $old_login ]['author_last_name'] : '', ); $user_id = wp_insert_user( $user_data ); } if ( ! is_wp_error( $user_id ) ) { if ( $old_id ) { $this->processed_authors[ $old_id ] = $user_id; } $this->author_mapping[ $santized_old_login ] = $user_id; } else { /* translators: %s: author name */ printf( esc_html__( 'Failed to create new user for %s. Their posts will be attributed to the current user.', 'porto' ), esc_html( $this->authors[ $old_login ]['author_display_name'] ) ); if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) { echo ' ' . $user_id->get_error_message(); } echo '<br />'; } } // failsafe: if the user_id was invalid, default to the current user if ( ! isset( $this->author_mapping[ $santized_old_login ] ) ) { if ( $old_id ) { $this->processed_authors[ $old_id ] = (int) get_current_user_id(); } $this->author_mapping[ $santized_old_login ] = (int) get_current_user_id(); } } } /** * Create new categories based on import information * * Doesn't create a new category if its slug already exists */ function process_categories() { $this->categories = apply_filters( 'wp_import_categories', $this->categories ); if ( empty( $this->categories ) ) { return; } foreach ( $this->categories as $cat ) { // if the category already exists leave it alone $term_id = term_exists( $cat['category_nicename'], 'category' ); if ( $term_id ) { if ( is_array( $term_id ) ) { $term_id = $term_id['term_id']; } if ( isset( $cat['term_id'] ) ) { $this->processed_terms[ intval( $cat['term_id'] ) ] = (int) $term_id; } $tax_meta_array = get_metadata( 'category', $term_id ); if ( $tax_meta_array && is_array( $tax_meta_array ) ) { foreach ( $tax_meta_array as $old_meta_key => $old_meta_value ) { delete_metadata( 'category', $term_id, $old_meta_key ); } } if ( ! empty( $cat['tax_meta'] ) ) { foreach ( $cat['tax_meta'] as $meta ) { $key = $meta['key']; $value = $meta['value']; update_metadata( 'category', $term_id, $key, $value ); } } continue; } $parent = empty( $cat['category_parent'] ) ? 0 : category_exists( $cat['category_parent'] ); $description = isset( $cat['category_description'] ) ? $cat['category_description'] : ''; $data = array( 'category_nicename' => $cat['category_nicename'], 'category_parent' => $parent, 'cat_name' => wp_slash( $cat['cat_name'] ), 'category_description' => wp_slash( $description ), ); $id = wp_insert_category( $data ); if ( ! is_wp_error( $id ) && $id > 0 ) { if ( isset( $cat['term_id'] ) ) { do_action( 'porto_importer_insert_term', $id, (int) $cat['term_id'] ); $this->processed_terms[ intval( $cat['term_id'] ) ] = $id; } if ( ! empty( $cat['tax_meta'] ) ) { foreach ( $cat['tax_meta'] as $meta ) { $key = $meta['key']; $value = $meta['value']; update_metadata( 'category', $id, $key, $value ); } } } else { /* translators: %s: category name */ printf( esc_html__( 'Failed to import category %s', 'porto' ), esc_html( $cat['category_nicename'] ) ); if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) { echo ': ' . $id->get_error_message(); } echo '<br />'; continue; } $this->process_termmeta( $cat, $id ); } unset( $this->categories ); } /** * Create new post tags based on import information * * Doesn't create a tag if its slug already exists */ function process_tags() { $this->tags = apply_filters( 'wp_import_tags', $this->tags ); if ( empty( $this->tags ) ) { return; } foreach ( $this->tags as $tag ) { // if the tag already exists leave it alone $term_id = term_exists( $tag['tag_slug'], 'post_tag' ); if ( $term_id ) { if ( is_array( $term_id ) ) { $term_id = $term_id['term_id']; } if ( isset( $tag['term_id'] ) ) { $this->processed_terms[ intval( $tag['term_id'] ) ] = (int) $term_id; } continue; } $description = isset( $tag['tag_description'] ) ? $tag['tag_description'] : ''; $args = array( 'slug' => $tag['tag_slug'], 'description' => wp_slash( $description ), ); $id = wp_insert_term( wp_slash( $tag['tag_name'] ), 'post_tag', $args ); if ( ! is_wp_error( $id ) ) { if ( isset( $tag['term_id'] ) ) { do_action( 'porto_importer_insert_term', $id['term_id'], (int) $tag['term_id'] ); $this->processed_terms[ intval( $tag['term_id'] ) ] = $id['term_id']; } } else { /* translators: %s: tag name */ printf( esc_html__( 'Failed to import post tag %s', 'porto' ), esc_html( $tag['tag_name'] ) ); if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) { echo ': ' . $id->get_error_message(); } echo '<br />'; continue; } $this->process_termmeta( $tag, $id['term_id'] ); } unset( $this->tags ); } /** * Create new terms based on import information * * Doesn't create a term its slug already exists */ function process_terms() { $this->terms = apply_filters( 'wp_import_terms', $this->terms ); foreach ( $this->posts as $post ) { if ( 'ptu_tax' == $post['post_type'] ) { // Post Types Unlimited Compaibility $meta_tmp = $post['postmeta']; $meta = array(); foreach ( $meta_tmp as $meta_item ) { $meta[ $meta_item['key'] ] = array( $meta_item['value'] ); } // Check custom post type name $name = array_key_exists( '_ptu_name', $meta ) ? $meta['_ptu_name'][0] : ''; // Custom post type name is required if ( ! $name ) { continue; } // Get custom labels $label = array_key_exists( '_ptu_label', $meta ) ? $meta['_ptu_label'][0] : $name; $singular_name = array_key_exists( '_ptu_singular_name', $meta ) ? $meta['_ptu_singular_name'][0] : $label; $search_items = array_key_exists( '_ptu_labels_search_items', $meta ) ? $meta['_ptu_labels_search_items'][0] : sprintf( _x( 'Search %s', 'taxonomy label', 'porto' ), $label ); $all_items = array_key_exists( '_ptu_labels_all_items', $meta ) ? $meta['_ptu_labels_all_items'][0] : sprintf( _x( 'All %s', 'taxonomy label', 'porto' ), $label ); $parent_item = array_key_exists( '_ptu_labels_parent_item', $meta ) ? $meta['_ptu_labels_parent_item'][0] : sprintf( _x( 'Parent %s', 'taxonomy label', 'porto' ), $singular_name ); $parent_item_colon = array_key_exists( '_ptu_labels_parent_item_colon', $meta ) ? $meta['_ptu_labels_parent_item_colon'][0] : sprintf( _x( 'Parent %s:', 'taxonomy label', 'porto' ), $singular_name ); $view_item = array_key_exists( '_ptu_labels_parent_view_item', $meta ) ? $meta['_ptu_labels_parent_view_item'][0] : sprintf( _x( 'View %s', 'taxonomy label', 'porto' ), $singular_name ); $edit_item = array_key_exists( '_ptu_labels_parent_edit_item', $meta ) ? $meta['_ptu_labels_parent_edit_item'][0] : sprintf( _x( 'Edit %s', 'taxonomy label', 'porto' ), $singular_name ); $update_item = array_key_exists( '_ptu_labels_update_item', $meta ) ? $meta['_ptu_labels_update_item'][0] : sprintf( _x( 'Update %s', 'taxonomy label', 'porto' ), $singular_name ); $add_new_item = array_key_exists( '_ptu_labels_add_new_item', $meta ) ? $meta['_ptu_labels_add_new_item'][0] : sprintf( _x( 'Add New %s', 'taxonomy label', 'porto' ), $singular_name ); $add_new_item_name = array_key_exists( '_ptu_labels_add_new_item_name', $meta ) ? $meta['_ptu_labels_add_new_item_name'][0] : sprintf( _x( 'New %s', 'taxonomy label', 'porto' ), $singular_name ); $popular_items = array_key_exists( '_ptu_labels_popular_items', $meta ) ? $meta['_ptu_labels_popular_items'][0] : sprintf( _x( 'Popular %s', 'taxonomy label', 'porto' ), $label ); $separate_items_with_commas = array_key_exists( '_ptu_labels_separate_items_with_commas', $meta ) ? $meta['_ptu_labels_separate_items_with_commas'][0] : sprintf( _x( 'Separate %s with commas', 'taxonomy label', 'porto' ), $label ); $add_or_remove_items = array_key_exists( '_ptu_labels_add_or_remove_items', $meta ) ? $meta['_ptu_labels_add_or_remove_items'][0] : sprintf( _x( 'Add or remove %s', 'taxonomy label', 'porto' ), $label ); $choose_from_most_used = array_key_exists( '_ptu_labels_choose_from_most_used', $meta ) ? $meta['_ptu_labels_choose_from_most_used'][0] : sprintf( _x( 'Choose from the most used %s', 'taxonomy label', 'porto' ), $label ); $choose_not_found = array_key_exists( '_ptu_labels_choose_not_found', $meta ) ? $meta['_ptu_labels_choose_not_found'][0] : sprintf( _x( 'Choose from the most used %s', 'taxonomy label', 'porto' ), $label ); $not_found = array_key_exists( '_ptu_labels_not_found', $meta ) ? $meta['_ptu_labels_not_found'][0] : sprintf( _x( 'Choose from the most used %s', 'taxonomy label', 'porto' ), $label ); $back_to_items = array_key_exists( '_ptu_labels_back_to_items', $meta ) ? $meta['_ptu_labels_back_to_items'][0] : sprintf( _x( 'Back to %s', 'taxonomy label', 'porto' ), $label ); // labels array $labels = array( 'name' => $label, 'singular_name' => $singular_name, 'all_items' => $all_items, 'edit_item' => $edit_item, 'view_item' => $view_item, 'update_item' => $update_item, 'add_new_item' => $add_new_item, 'new_item_name' => $add_new_item_name, 'parent_item' => $parent_item, 'parent_item_colon' => $parent_item_colon, 'search_items' => $search_items, 'popular_items' => $popular_items, 'separate_items_with_commas' => $separate_items_with_commas, 'add_or_remove_items' => $add_or_remove_items, 'choose_from_most_used' => $choose_from_most_used, 'not_found' => $not_found, 'back_to_items' => $back_to_items, ); if ( array_key_exists( '_ptu_menu_name', $meta ) ) { $labels['menu_name'] = $meta['_ptu_menu_name'][0]; } // Define taxonomy arguments $description = array_key_exists( '_ptu_description', $meta ) ? $meta['_ptu_description'][0] : ''; $public = array_key_exists( '_ptu_public', $meta ) ? $meta['_ptu_public'][0] : true; $publicly_queryable = array_key_exists( '_ptu_publicly_queryable', $meta ) ? $meta['_ptu_publicly_queryable'][0] : true; $hierarchical = array_key_exists( '_ptu_hierarchical', $meta ) ? $meta['_ptu_hierarchical'][0] : false; $show_ui = array_key_exists( '_ptu_show_ui', $meta ) ? $meta['_ptu_show_ui'][0] : true; $show_in_nav_menus = array_key_exists( '_ptu_show_in_nav_menus', $meta ) ? $meta['_ptu_show_in_nav_menus'][0] : true; $show_in_menu = array_key_exists( '_ptu_show_in_menu', $meta ) ? $meta['_ptu_show_in_menu'][0] : true; $show_in_rest = array_key_exists( '_ptu_show_in_rest', $meta ) ? $meta['_ptu_show_in_rest'][0] : false; $show_admin_column = array_key_exists( '_ptu_show_admin_column', $meta ) ? $meta['_ptu_show_admin_column'][0] : true; $query_var = array_key_exists( '_ptu_query_var', $meta ) ? $meta['_ptu_query_var'][0] : true; $rewrite = array_key_exists( '_ptu_rewrite', $meta ) ? $meta['_ptu_rewrite'][0] : true; $slug = array_key_exists( '_ptu_slug', $meta ) ? $meta['_ptu_slug'][0] : ''; $with_front = array_key_exists( '_ptu_with_front', $meta ) ? $meta['_ptu_with_front'][0] : true; $rewrite_hierarchical = array_key_exists( '_ptu_with_front', $meta ) ? $meta['_ptu_with_front'][0] : false; $rest_controller_class = array_key_exists( '_ptu_rest_controller_class', $meta ) ? $meta['_ptu_rest_controller_class'][0] : null; $args = array( 'labels' => $labels, 'description' => wp_strip_all_tags( $description ), 'public' => wp_validate_boolean( $public ), 'publicly_queryable' => wp_validate_boolean( $publicly_queryable ), 'hierarchical' => wp_validate_boolean( $hierarchical ), 'show_ui' => wp_validate_boolean( $show_ui ), 'show_in_nav_menus' => wp_validate_boolean( $show_in_nav_menus ), 'show_in_menu' => wp_validate_boolean( $show_in_menu ), 'show_admin_column' => wp_validate_boolean( $show_admin_column ), 'query_var' => wp_validate_boolean( $query_var ), 'show_in_rest' => wp_validate_boolean( $show_in_rest ), ); if ( $rewrite ) { $args['rewrite'] = array( 'slug' => $slug, 'with_front' => wp_validate_boolean( $with_front ), 'hierarchical' => wp_validate_boolean( $rewrite_hierarchical ), ); } else { $args['rewrite'] = false; } if ( array_key_exists( '_ptu_rest_base', $meta ) ) { $labels['rest_base'] = $meta['_ptu_rest_base'][0]; } if ( array_key_exists( '_ptu_rest_controller_class', $meta ) ) { $labels['rest_controller_class'] = $meta['_ptu_rest_controller_class'][0]; } $object_type = get_post_meta( $tax_id, '_ptu_object_type', true ); $object_type = is_array( $object_type ) ? $object_type : array( 'post' ); register_taxonomy( $name, $object_type, $args ); } elseif ( 'acf-taxonomy' == $post['post_type'] ) { // ACF Compatibility global $acf_instances; if ( ! empty( $acf_instances ) ) { $taxonomy = maybe_unserialize( $post['post_content'] ); $args = $acf_instances['ACF_Taxonomy']->get_taxonomy_args( $taxonomy ); if ( ! taxonomy_exists( $taxonomy['taxonomy'] ) ) { register_taxonomy( $taxonomy['taxonomy'], (array) $taxonomy['object_type'], $args ); } } } } if ( empty( $this->terms ) ) { return; } foreach ( $this->terms as $term ) { // if the term already exists in the correct taxonomy leave it alone $term_id = term_exists( $term['slug'], $term['term_taxonomy'] ); if ( $term_id ) { if ( is_array( $term_id ) ) { $term_id = $term_id['term_id']; } if ( isset( $term['term_id'] ) ) { $this->processed_terms[ intval( $term['term_id'] ) ] = (int) $term_id; } $tax_meta_array = get_metadata( $term['term_taxonomy'], $term_id ); if ( $tax_meta_array && is_array( $tax_meta_array ) ) { foreach ( $tax_meta_array as $old_meta_key => $old_meta_value ) { delete_metadata( $term['term_taxonomy'], $term_id, $old_meta_key ); } } if ( ! empty( $term['tax_meta'] ) ) { foreach ( $term['tax_meta'] as $meta ) { $key = $meta['key']; $value = $meta['value']; update_metadata( $term['term_taxonomy'], $term_id, $key, $value ); } } do_action( 'porto_importer_update_term', (int) $term_id, (int) $term['term_id'] ); continue; } if ( empty( $term['term_parent'] ) ) { $parent = 0; } else { $parent = term_exists( $term['term_parent'], $term['term_taxonomy'] ); if ( is_array( $parent ) ) { $parent = $parent['term_id']; } } $description = isset( $term['term_description'] ) ? $term['term_description'] : ''; $args = array( 'slug' => $term['slug'], 'description' => wp_slash( $description ), 'parent' => (int) $parent, ); $id = wp_insert_term( wp_slash( $term['term_name'] ), $term['term_taxonomy'], $args ); if ( ! is_wp_error( $id ) ) { if ( isset( $term['term_id'] ) ) { do_action( 'porto_importer_insert_term', $id['term_id'], (int) $term['term_id'] ); $this->processed_terms[ intval( $term['term_id'] ) ] = $id['term_id']; } if ( ! empty( $term['tax_meta'] ) ) { foreach ( $term['tax_meta'] as $meta ) { $key = $meta['key']; $value = $meta['value']; update_metadata( $term['term_taxonomy'], $id['term_id'], $key, $value ); } } } else { /* translators: 1: taxonomy name 2: term name */ printf( esc_html__( 'Failed to import %1$s %2$s', 'porto' ), esc_html( $term['term_taxonomy'] ), esc_html( $term['term_name'] ) ); if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) { echo ': ' . $id->get_error_message(); } echo '<br />'; continue; } $this->process_termmeta( $term, $id['term_id'] ); } unset( $this->terms ); } /** * Add metadata to imported term. * * @since 0.6.2 * * @param array $term Term data from WXR import. * @param int $term_id ID of the newly created term. */ protected function process_termmeta( $term, $term_id ) { if ( ! function_exists( 'add_term_meta' ) ) { return; } if ( ! isset( $term['termmeta'] ) ) { $term['termmeta'] = array(); } /** * Filters the metadata attached to an imported term. * * @since 0.6.2 * * @param array $termmeta Array of term meta. * @param int $term_id ID of the newly created term. * @param array $term Term data from the WXR import. */ $term['termmeta'] = apply_filters( 'wp_import_term_meta', $term['termmeta'], $term_id, $term ); if ( empty( $term['termmeta'] ) ) { return; } foreach ( $term['termmeta'] as $meta ) { /** * Filters the meta key for an imported piece of term meta. * * @since 0.6.2 * * @param string $meta_key Meta key. * @param int $term_id ID of the newly created term. * @param array $term Term data from the WXR import. */ $key = apply_filters( 'import_term_meta_key', $meta['key'], $term_id, $term ); if ( ! $key ) { continue; } // Export gets meta straight from the DB so could have a serialized string $value = maybe_unserialize( $meta['value'] ); add_term_meta( $term_id, wp_slash( $key ), wp_slash( $value ) ); /** * Fires after term meta is imported. * * @since 0.6.2 * * @param int $term_id ID of the newly created term. * @param string $key Meta key. * @param mixed $value Meta value. */ do_action( 'import_term_meta', $term_id, $key, $value ); } } /** * Create new posts based on import information * * Posts marked as having a parent which doesn't exist will become top level items. * Doesn't create a new post if: the post type doesn't exist, the given post ID * is already noted as imported or a post with the same title and date already exists. * Note that new/updated terms, comments and meta are imported for the last of the above. */ function process_posts() { $this->posts = apply_filters( 'wp_import_posts', $this->posts ); $import_types = array( 'post' => 0, 'product' => 0, 'portfolio' => 0, 'member' => 0, 'event' => 0, 'service' => 0, 'services' => 0, 'team' => 0, 'faq' => 0, 'practice' => 0, ); // Post Types Unlimited Compaibility $whitelist = array(); foreach ( $this->posts as $post ) { if ( 'ptu' == $post['post_type'] ) { foreach ( $post['postmeta'] as $meta ) { if ( '_ptu_name' == $meta['key'] ) { $whitelist[] = $meta['value']; } } } elseif ( 'acf-post-type' == $post['post_type'] ) { $whitelist[] = maybe_unserialize( $post['post_content'] )['post_type']; } } foreach ( $this->posts as $post ) { $post = apply_filters( 'wp_import_post_data_raw', $post ); if ( ! post_type_exists( $post['post_type'] ) && ! in_array( $post['post_type'], $whitelist ) ) { printf( /* translators: 1: post title 2: post type */ esc_html__( 'Failed to import “%1$s”: Invalid post type %2$s', 'porto' ), esc_html( $post['post_title'] ), esc_html( $post['post_type'] ) ); echo '<br />'; do_action( 'wp_import_post_exists', $post ); continue; } if ( isset( $_POST['one_import'] ) && 'true' == $_POST['one_import'] && isset( $import_types[ $post['post_type'] ] ) && $import_types[ $post['post_type'] ] ) { continue; } if ( isset( $this->processed_posts[ $post['post_id'] ] ) && ! empty( $post['post_id'] ) ) { continue; } if ( 'auto-draft' == $post['status'] ) { continue; } if ( 'nav_menu_item' == $post['post_type'] ) { $this->process_menu_item( $post ); continue; } if ( 'attachment' == $post['post_type'] && isset( $_POST['skip_media'] ) && 'true' == $_POST['skip_media'] ) { continue; } $post_type_object = get_post_type_object( $post['post_type'] ); $post_exists = post_exists( $post['post_title'], '', $post['post_date'] ); /** * Filter ID of the existing post corresponding to post currently importing. * * Return 0 to force the post to be imported. Filter the ID to be something else * to override which existing post is mapped to the imported post. * * @see post_exists() * @since 0.6.2 * * @param int $post_exists Post ID, or 0 if post did not exist. * @param array $post The post array to be inserted. */ $post_exists = apply_filters( 'wp_import_existing_post', $post_exists, $post ); if ( 'attachment' == $post['post_type'] && $post_exists && get_post_type( $post_exists ) == $post['post_type'] ) { $override_contents = ( isset( $_POST['override_contents'] ) && 'true' == $_POST['override_contents'] ) ? true : false; if ( $override_contents ) { wp_delete_attachment( $post_exists, true ); $post_exists = false; } } if ( $post_exists && get_post_type( $post_exists ) == $post['post_type'] ) { /* translators: 1: post singular name 2: post title */ printf( esc_html__( '%1$s “%2$s” already exists.', 'porto' ), $post_type_object->labels->singular_name, esc_html( $post['post_title'] ) ); echo '<br />'; $comment_post_ID = $post_id = $post_exists; //$this->processed_posts[ intval( $post['post_id'] ) ] = intval( $post_exists ); if ( 'page' == $post['post_type'] || 'block' == $post['post_type'] || 'porto_builder' == $post['post_type'] || 'member' == $post['post_type'] || 'portfolio' == $post['post_type'] || 'event' == $post['post_type'] || 'post' == $post['post_type'] || 'faq' == $post['post_type'] || 'service' == $post['post_type'] || 'product' == $post['post_type'] ) { $post_parent = (int) $post['post_parent']; if ( $post_parent ) { // if we already know the parent, map it to the new local ID if ( isset( $this->processed_posts[ $post_parent ] ) ) { $post_parent = $this->processed_posts[ $post_parent ]; // otherwise record the parent for later } else { $this->post_orphans[ intval( $post['post_id'] ) ] = $post_parent; $post_parent = 0; } } // map the post author $author = sanitize_user( $post['post_author'], true ); if ( isset( $this->author_mapping[ $author ] ) ) { $author = $this->author_mapping[ $author ]; } else { $author = (int) get_current_user_id(); } $postdata = array( 'ID' => $post_id, 'post_author' => $author, 'post_date' => $post['post_date'], 'post_date_gmt' => $post['post_date_gmt'], 'post_content' => $post['post_content'], 'post_excerpt' => $post['post_excerpt'], 'post_title' => $post['post_title'], 'post_status' => $post['status'], 'post_name' => $post['post_name'], 'comment_status' => $post['comment_status'], 'ping_status' => $post['ping_status'], 'guid' => $post['guid'], 'post_parent' => $post_parent, 'menu_order' => $post['menu_order'], 'post_type' => $post['post_type'], 'post_password' => $post['post_password'], ); $postdata = apply_filters( 'wp_import_post_data_processed', $postdata, $post ); $postdata = wp_slash( $postdata ); /** * reset page template to fix wp_update_post is failed due to page template * * @since 6.3.0 */ $old_page_template = get_post_meta( $post_id, '_wp_page_template', 'default' ); if ( $old_page_template && 'default' !== $old_page_template ) { $page_templates = wp_get_theme()->get_page_templates( get_post( $post_id ) ); if ( ! isset( $page_templates[ $old_page_template ] ) ) { update_post_meta( $post_id, '_wp_page_template', 'default' ); } } $comment_post_ID = $post_id = wp_update_post( $postdata, true ); if ( is_wp_error( $post_id ) ) { printf( esc_html__( 'Failed to import %1$s “%2$s”', 'porto' ), $post_type_object->labels->singular_name, esc_html( $post['post_title'] ) ); if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) { echo ': ' . $post_id->get_error_message(); } echo '<br />'; //continue; unset( $this->posts ); return; } $demo = ( isset( $_POST['demo'] ) && $_POST['demo'] ) ? $_POST['demo'] : 'landing'; do_action( 'porto_importer_update_post', $post_id, $post['post_id'], $postdata ); if ( false !== strpos( $demo, 'elementor-' ) ) { delete_post_meta( $post_id, '_elementor_css' ); } elseif ( false !== strpos( $demo, 'vc-' ) ) { delete_post_meta( $post_id, 'vcvSourceCss' ); delete_post_meta( $post_id, 'vcvSettingsSourceCustomCss' ); delete_post_meta( $post_id, 'vcv-globalElementsCssData' ); delete_post_meta( $post_id, 'vcvSourceCssFileUrl' ); delete_post_meta( $post_id, 'vcvSourceAssetsFiles' ); } // meta fields to refresh $meta_fields = array( '_wpb_post_custom_css', '_wpb_shortcodes_custom_css', '_elementor_data', '_elementor_edit_mode', 'vcv-pageContent', 'vcv-be-editor', '_elementor_page_assets', 'porto_elementor_page_assets_saved' ); foreach ( $meta_fields as $key ) { delete_post_meta( $post_id, $key ); } if ( function_exists( 'porto_ct_default_view_meta_fields' ) ) { $meta_fields = porto_ct_default_view_meta_fields(); foreach ( $meta_fields as $key => $value ) { delete_post_meta( $post_id, $key ); } } if ( function_exists( 'porto_ct_default_skin_meta_fields' ) ) { $meta_fields = porto_ct_default_skin_meta_fields(); foreach ( $meta_fields as $key => $value ) { delete_post_meta( $post_id, $key ); } } } } else { $post_parent = (int) $post['post_parent']; if ( $post_parent ) { // if we already know the parent, map it to the new local ID if ( isset( $this->processed_posts[ $post_parent ] ) ) { $post_parent = $this->processed_posts[ $post_parent ]; // otherwise record the parent for later } else { $this->post_orphans[ intval( $post['post_id'] ) ] = $post_parent; $post_parent = 0; } } // map the post author $author = sanitize_user( $post['post_author'], true ); if ( isset( $this->author_mapping[ $author ] ) ) { $author = $this->author_mapping[ $author ]; } else { $author = (int) get_current_user_id(); } $postdata = array( 'import_id' => $post['post_id'], 'post_author' => $author, 'post_date' => $post['post_date'], 'post_date_gmt' => $post['post_date_gmt'], 'post_content' => $post['post_content'], 'post_excerpt' => $post['post_excerpt'], 'post_title' => $post['post_title'], 'post_status' => $post['status'], 'post_name' => $post['post_name'], 'comment_status' => $post['comment_status'], 'ping_status' => $post['ping_status'], 'guid' => $post['guid'], 'post_parent' => $post_parent, 'menu_order' => $post['menu_order'], 'post_type' => $post['post_type'], 'post_password' => $post['post_password'], ); $original_post_ID = $post['post_id']; $postdata = apply_filters( 'wp_import_post_data_processed', $postdata, $post ); $postdata = wp_slash( $postdata ); if ( 'attachment' == $postdata['post_type'] ) { $remote_url = ! empty( $post['attachment_url'] ) ? $post['attachment_url'] : $post['guid']; // try to use _wp_attached file for upload folder placement to ensure the same location as the export site // e.g. location is 2003/05/image.jpg but the attachment post_date is 2010/09, see media_handle_upload() $postdata['upload_date'] = $post['post_date']; if ( isset( $post['postmeta'] ) ) { foreach ( $post['postmeta'] as $meta ) { if ( '_wp_attached_file' == $meta['key'] ) { if ( preg_match( '%^[0-9]{4}/[0-9]{2}%', $meta['value'], $matches ) ) { $postdata['upload_date'] = $matches[0]; } break; } } } $comment_post_ID = $post_id = $this->process_attachment( $postdata, $remote_url ); } else { $comment_post_ID = $post_id = wp_insert_post( $postdata, true ); do_action( 'wp_import_insert_post', $post_id, $original_post_ID, $postdata, $post ); } if ( is_wp_error( $post_id ) ) { printf( esc_html__( 'Failed to import %1$s “%2$s”', 'porto' ), $post_type_object->labels->singular_name, esc_html( $post['post_title'] ) ); if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) { echo ': ' . $post_id->get_error_message(); } echo '<br />'; continue; } if ( 1 == $post['is_sticky'] ) { stick_post( $post_id ); } } // map pre-import ID to local ID $this->processed_posts[ intval( $post['post_id'] ) ] = (int) $post_id; if ( isset( $_POST['one_import'] ) && 'true' == $_POST['one_import'] && isset( $import_types[ $post['post_type'] ] ) ) { if ( $post['status'] == 'publish' ) { $import_types[ $post['post_type'] ] ++; } } if ( ! isset( $post['terms'] ) ) { $post['terms'] = array(); } $post['terms'] = apply_filters( 'wp_import_post_terms', $post['terms'], $post_id, $post ); // add categories, tags and other terms if ( ! empty( $post['terms'] ) ) { $terms_to_set = array(); foreach ( $post['terms'] as $term ) { // back compat with WXR 1.0 map 'tag' to 'post_tag' $taxonomy = ( 'tag' == $term['domain'] ) ? 'post_tag' : $term['domain']; $term_exists = term_exists( $term['slug'], $taxonomy ); $term_id = is_array( $term_exists ) ? $term_exists['term_id'] : $term_exists; if ( ! $term_id ) { $t = wp_insert_term( $term['name'], $taxonomy, array( 'slug' => $term['slug'] ) ); if ( ! is_wp_error( $t ) ) { $term_id = $t['term_id']; do_action( 'wp_import_insert_term', $t, $term, $post_id, $post ); } else { printf( esc_html__( 'Failed to import %1$s %2$s', 'porto' ), esc_html( $taxonomy ), esc_html( $term['name'] ) ); if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) { echo ': ' . $t->get_error_message(); } echo '<br />'; do_action( 'wp_import_insert_term_failed', $t, $term, $post_id, $post ); continue; } } $terms_to_set[ $taxonomy ][] = intval( $term_id ); } foreach ( $terms_to_set as $tax => $ids ) { $tt_ids = wp_set_post_terms( $post_id, $ids, $tax ); do_action( 'wp_import_set_post_terms', $tt_ids, $ids, $tax, $post_id, $post ); } unset( $post['terms'], $terms_to_set ); } if ( ! isset( $post['comments'] ) ) { $post['comments'] = array(); } $post['comments'] = apply_filters( 'wp_import_post_comments', $post['comments'], $post_id, $post ); // add/update comments if ( ! empty( $post['comments'] ) ) { $num_comments = 0; $inserted_comments = array(); foreach ( $post['comments'] as $comment ) { $comment_id = $comment['comment_id']; $newcomments[ $comment_id ]['comment_post_ID'] = $comment_post_ID; $newcomments[ $comment_id ]['comment_author'] = $comment['comment_author']; $newcomments[ $comment_id ]['comment_author_email'] = $comment['comment_author_email']; $newcomments[ $comment_id ]['comment_author_IP'] = $comment['comment_author_IP']; $newcomments[ $comment_id ]['comment_author_url'] = $comment['comment_author_url']; $newcomments[ $comment_id ]['comment_date'] = $comment['comment_date']; $newcomments[ $comment_id ]['comment_date_gmt'] = $comment['comment_date_gmt']; $newcomments[ $comment_id ]['comment_content'] = $comment['comment_content']; $newcomments[ $comment_id ]['comment_approved'] = $comment['comment_approved']; $newcomments[ $comment_id ]['comment_type'] = $comment['comment_type']; $newcomments[ $comment_id ]['comment_parent'] = $comment['comment_parent']; $newcomments[ $comment_id ]['commentmeta'] = isset( $comment['commentmeta'] ) ? $comment['commentmeta'] : array(); if ( isset( $this->processed_authors[ $comment['comment_user_id'] ] ) ) { $newcomments[ $comment_id ]['user_id'] = $this->processed_authors[ $comment['comment_user_id'] ]; } } ksort( $newcomments ); foreach ( $newcomments as $key => $comment ) { // if this is a new post we can skip the comment_exists() check if ( ! $post_exists || ! comment_exists( $comment['comment_author'], $comment['comment_date'] ) ) { if ( isset( $inserted_comments[ $comment['comment_parent'] ] ) ) { $comment['comment_parent'] = $inserted_comments[ $comment['comment_parent'] ]; } $comment_data = wp_slash( $comment ); unset( $comment_data['commentmeta'] ); // Handled separately, wp_insert_comment() also expects `comment_meta`. $comment_data = wp_filter_comment( $comment_data ); $inserted_comments[ $key ] = wp_insert_comment( $comment_data ); do_action( 'wp_import_insert_comment', $inserted_comments[ $key ], $comment, $comment_post_ID, $post ); foreach ( $comment['commentmeta'] as $meta ) { $value = maybe_unserialize( $meta['value'] ); add_comment_meta( $inserted_comments[ $key ], wp_slash( $meta['key'] ), wp_slash( $value ) ); } $num_comments++; } } unset( $newcomments, $inserted_comments, $post['comments'] ); } if ( ! isset( $post['postmeta'] ) ) { $post['postmeta'] = array(); } $post['postmeta'] = apply_filters( 'wp_import_post_meta', $post['postmeta'], $post_id, $post ); // add/update post meta if ( 'page' == $post['post_type'] ) { if ( $post_exists ) { delete_post_meta( $post_id, 'porto_imported_date' ); } add_post_meta( $post_id, 'porto_imported_date', current_time( 'mysql' ) ); } if ( ! empty( $post['postmeta'] ) ) { $is_vc_post = false; $has_vc_content = false; $builder_cds = false; foreach ( $post['postmeta'] as $meta ) { $key = apply_filters( 'import_post_meta_key', $meta['key'], $post_id, $post ); $value = false; if ( '_edit_last' == $key ) { if ( isset( $this->processed_authors[ intval( $meta['value'] ) ] ) ) { $value = $this->processed_authors[ intval( $meta['value'] ) ]; } else { $key = false; } } if ( $key ) { // export gets meta straight from the DB so could have a serialized string if ( ! $value ) { $value = maybe_unserialize( $meta['value'] ); } if ( 'vcvSourceAssetsFiles' == $key || 'vcv-pageContent' == $key ) { $value = $this->vcv_update_urls( $value ); } if ( $post_exists ) { delete_post_meta( $post_id, $key ); } if ( 'porto_builder' == $post['post_type'] && 'porto_blocks_style_options_css' == $key && false !== strpos( $post['post_content'], 'sw-themes.com' ) ) { // Update Type Builder PortoShortcodesClass::get_instance()->save_meta_values( $post_id, (object) $post ); } else { add_post_meta( $post_id, wp_slash( $key ), wp_slash_strings_only( $value ) ); } do_action( 'import_post_meta', $post_id, $key, $value ); // if the post has a featured image, take note of this in case of remap if ( '_thumbnail_id' == $key ) { $this->featured_images[ $post_id ] = (int) $value; } if ( 'vcv-be-editor' == $key && 'fe' == $value ) { $is_vc_post = true; } elseif ( ( 'vcvSourceCss' == $key || 'vcv-globalElementsCssData' == $key ) && $value ) { $has_vc_content = true; } // save template display conditions if ( '_porto_builder_conditions' == $key && $value && defined( 'PORTO_BUILDERS_PATH' ) ) { $builder_cds = $value; } } } // reset builder conditions if ( $builder_cds && is_array( $builder_cds ) ) { require_once PORTO_BUILDERS_PATH . 'lib/class-condition.php'; $cls = new Porto_Builder_Condition(); $_POST['type'] = array(); $_POST['object_type'] = array(); $_POST['object_id'] = array(); $_POST['object_name'] = array(); foreach ( $builder_cds as $index => $condition ) { if ( ! is_array( $condition ) ) { continue; } $_POST['type'][] = $condition[0]; $_POST['object_type'][] = $condition[1]; $_POST['object_id'][] = $condition[2]; $_POST['object_name'][] = $condition[3]; } if ( 'block' == get_post_meta( $post_id, 'porto_builder_type', true ) ) { $block_type = get_post_meta( $post_id, '_porto_block_pos', true ); if ( $block_type && 0 === strpos( $block_type, 'block_' ) ) { $block_type = str_replace( 'block_', '', $block_type ); $_POST['data_part'] = $block_type; } } $cls->save_condition( true, (int) $post_id ); unset( $_POST['type'], $_POST['object_type'], $_POST['object_id'], $_POST['object_name'], $_POST['data_part'] ); } // regenerate Visual Composer css if ( defined( 'VCV_VERSION' ) && $is_vc_post && $has_vc_content ) { delete_post_meta( $post_id, '_vcv-sourceChecksum' ); vcevent( 'vcv:assets:file:generate', array( 'response' => array(), 'payload' => array( 'sourceId' => (int) $post_id, ), ) ); } } } unset( $this->posts ); } private function vcv_update_urls( $value ) { if ( is_array( $value ) ) { foreach ( $value as $key => $v ) { $value[ $key ] = $this->vcv_update_urls( $v ); } } else { if ( defined( 'PORTO_VC_ADDON_URL' ) ) { $value = str_replace( array( 'PORTO_FUNC_URI%2Fvisualcomposer', 'PORTO_FUNC_URI/visualcomposer', 'PORTO_VC_ADDON_URI', ), PORTO_VC_ADDON_URL, $value ); } $value = str_replace( 'PORTO_PLUGINS_URI', esc_url( plugins_url() ), $value ); $value = str_replace( 'PORTO_URI', esc_url( PORTO_URI . '/' ), $value ); } return $value; } /** * Attempt to create a new menu item from import data * * Fails for draft, orphaned menu items and those without an associated nav_menu * or an invalid nav_menu term. If the post type or term object which the menu item * represents doesn't exist then the menu item will not be imported (waits until the * end of the import to retry again before discarding). * * @param array $item Menu item details from WXR file */ function process_menu_item( $item ) { // skip draft, orphaned menu items if ( 'draft' == $item['status'] ) { return; } $menu_slug = false; if ( isset( $item['terms'] ) ) { // loop through terms, assume first nav_menu term is correct menu foreach ( $item['terms'] as $term ) { if ( 'nav_menu' == $term['domain'] ) { $menu_slug = $term['slug']; break; } } } // no nav_menu term associated with this menu item if ( ! $menu_slug ) { esc_html_e( 'Menu item skipped due to missing menu slug', 'porto' ); echo '<br />'; return; } $menu_id = term_exists( $menu_slug, 'nav_menu' ); if ( ! $menu_id ) { printf( esc_html__( 'Menu item skipped due to invalid menu slug: %s', 'porto' ), esc_html( $menu_slug ) ); echo '<br />'; return; } else { $menu_id = is_array( $menu_id ) ? $menu_id['term_id'] : $menu_id; } foreach ( $item['postmeta'] as $meta ) { ${$meta['key']} = $meta['value']; } if ( 'taxonomy' == $_menu_item_type && isset( $this->processed_terms[ intval( $_menu_item_object_id ) ] ) ) { $_menu_item_object_id = $this->processed_terms[ intval( $_menu_item_object_id ) ]; } elseif ( 'post_type' == $_menu_item_type && isset( $this->processed_posts[ intval( $_menu_item_object_id ) ] ) ) { $_menu_item_object_id = $this->processed_posts[ intval( $_menu_item_object_id ) ]; } elseif ( 'post_type_archive' == $_menu_item_type && isset( $_menu_item_object ) ) { $_menu_item_object_id = 0; } elseif ( 'custom' != $_menu_item_type ) { // associated object is missing or not imported yet, we'll retry later if ( ! in_array( $item, $this->missing_menu_items ) ) { $this->missing_menu_items[] = $item; } return; } if ( isset( $this->processed_menu_items[ intval( $_menu_item_menu_item_parent ) ] ) ) { $_menu_item_menu_item_parent = $this->processed_menu_items[ intval( $_menu_item_menu_item_parent ) ]; } elseif ( $_menu_item_menu_item_parent ) { $this->menu_item_orphans[ intval( $item['post_id'] ) ] = (int) $_menu_item_menu_item_parent; $_menu_item_menu_item_parent = 0; } // wp_update_nav_menu_item expects CSS classes as a space separated string $_menu_item_classes = maybe_unserialize( $_menu_item_classes ); if ( is_array( $_menu_item_classes ) ) { $_menu_item_classes = implode( ' ', $_menu_item_classes ); } if ( isset( $_menu_item_url ) && strpos( $_menu_item_url, 'http://sw-themes.com/porto_dummy' ) === 0 ) { $_menu_item_url = str_replace( 'http://sw-themes.com/porto_dummy', get_site_url(), $_menu_item_url ); } $args = array( 'menu-item-object-id' => $_menu_item_object_id, 'menu-item-object' => $_menu_item_object, 'menu-item-parent-id' => $_menu_item_menu_item_parent, 'menu-item-position' => intval( $item['menu_order'] ), 'menu-item-type' => $_menu_item_type, 'menu-item-title' => $item['post_title'], 'menu-item-url' => $_menu_item_url, 'menu-item-description' => $item['post_content'], 'menu-item-attr-title' => $item['post_excerpt'], 'menu-item-target' => $_menu_item_target, 'menu-item-classes' => $_menu_item_classes, 'menu-item-xfn' => $_menu_item_xfn, 'menu-item-status' => $item['status'], 'menu-item-icon' => isset( $_menu_item_icon ) ? $_menu_item_icon : '', 'menu-item-nolink' => isset( $_menu_item_nolink ) ? $_menu_item_nolink : '', 'menu-item-hide' => isset( $_menu_item_hide ) ? $_menu_item_hide : '', 'menu-item-mobile_hide' => isset( $_menu_item_mobile_hide ) ? $_menu_item_mobile_hide : '', 'menu-item-popup_mobile_hide' => isset( $_menu_item_popup_mobile_hide ) ? $_menu_item_popup_mobile_hide : '', 'menu-item-cols' => isset( $_menu_item_cols ) ? $_menu_item_cols : '', 'menu-item-tip_label' => isset( $_menu_item_tip_label ) ? $_menu_item_tip_label : '', 'menu-item-tip_color' => isset( $_menu_item_tip_color ) ? $_menu_item_tip_color : '', 'menu-item-tip_bg' => isset( $_menu_item_tip_bg ) ? $_menu_item_tip_bg : '', 'menu-item-popup_type' => isset( $_menu_item_popup_type ) ? $_menu_item_popup_type : '', 'menu-item-popup_pos' => isset( $_menu_item_popup_pos ) ? $_menu_item_popup_pos : '', 'menu-item-popup_cols' => isset( $_menu_item_popup_cols ) ? $_menu_item_popup_cols : '', 'menu-item-popup_max_width' => isset( $_menu_item_popup_max_width ) ? $_menu_item_popup_max_width : '', 'menu-item-popup_bg_image' => isset( $_menu_item_popup_bg_image ) ? $_menu_item_popup_bg_image : '', 'menu-item-popup_bg_pos' => isset( $_menu_item_popup_bg_pos ) ? $_menu_item_popup_bg_pos : '', 'menu-item-popup_bg_repeat' => isset( $_menu_item_popup_bg_repeat ) ? $_menu_item_popup_bg_repeat : '', 'menu-item-popup_bg_size' => isset( $_menu_item_popup_bg_size ) ? $_menu_item_popup_bg_size : '', 'menu-item-popup_style' => isset( $_menu_item_popup_style ) ? $_menu_item_popup_style : '', 'menu-item-block' => isset( $_menu_item_block ) ? $_menu_item_block : '', 'menu-item-preview' => isset( $_menu_item_preview ) ? $_menu_item_preview : '', 'menu-item-preview_fixed' => isset( $_menu_item_preview_fixed ) ? $_menu_item_preview_fixed : '', ); $id = wp_update_nav_menu_item( $menu_id, 0, $args ); if ( $id && ! is_wp_error( $id ) ) { do_action( 'porto_importer_insert_nav_menu_item', (int) $id ); $this->processed_menu_items[ intval( $item['post_id'] ) ] = (int) $id; } } /** * If fetching attachments is enabled then attempt to create a new attachment * * @param array $post Attachment post details from WXR * @param string $url URL to fetch attachment from * @return int|WP_Error Post ID on success, WP_Error otherwise */ function process_attachment( $post, $url ) { if ( ! $this->fetch_attachments ) { return new WP_Error( 'attachment_processing_error', __( 'Fetching attachments is not enabled', 'porto' ) ); } // if the URL is absolute, but does not contain address, then upload it assuming base_site_url if ( preg_match( '|^/[\w\W]+$|', $url ) ) { $url = rtrim( $this->base_url, '/' ) . $url; } $upload = $this->fetch_remote_file( $url, $post ); if ( is_wp_error( $upload ) ) { return $upload; } if ( $info = wp_check_filetype( $upload['file'] ) ) { $post['post_mime_type'] = $info['type']; } else { return new WP_Error( 'attachment_processing_error', __( 'Invalid file type', 'porto' ) ); } $post['guid'] = $upload['url']; $override_contents = ( isset( $_POST['override_contents'] ) && 'true' == $_POST['override_contents'] ) ? true : false; if ( $override_contents && isset( $post['import_id'] ) && ! empty( $post['import_id'] ) ) { $post_exists = get_post( $post['import_id'] ); if ( $post_exists ) { if ( defined( 'ELEMENTOR_VERSION' ) && 'kit' == get_post_meta( $post['import_id'], '_elementor_template_type', true ) ) { $_GET['force_delete_kit'] = true; } wp_delete_post( $post['import_id'], true ); unset( $_GET['force_delete_kit'] ); } } // as per wp-admin/includes/upload.php $post_id = wp_insert_attachment( $post, $upload['file'] ); wp_update_attachment_metadata( $post_id, wp_generate_attachment_metadata( $post_id, $upload['file'] ) ); do_action( 'porto_importer_insert_attachment', $post_id, isset( $post['import_id'] ) ? (int) $post['import_id'] : false ); // remap resized image URLs, works by stripping the extension and remapping the URL stub. if ( preg_match( '!^image/!', $info['type'] ) ) { $parts = pathinfo( $url ); $name = basename( $parts['basename'], ".{$parts['extension']}" ); // PATHINFO_FILENAME in PHP 5.2 $parts_new = pathinfo( $upload['url'] ); $name_new = basename( $parts_new['basename'], ".{$parts_new['extension']}" ); $this->url_remap[ $parts['dirname'] . '/' . $name ] = $parts_new['dirname'] . '/' . $name_new; } return $post_id; } /** * Attempt to download a remote file attachment * * @param string $url URL of item to fetch * @param array $post Attachment details * @return array|WP_Error Local file location details on success, WP_Error otherwise */ function fetch_remote_file( $url, $post ) { // Extract the file name from the URL. $path = parse_url( $url, PHP_URL_PATH ); $file_name = ''; if ( is_string( $path ) ) { $file_name = basename( $path ); } if ( ! $file_name ) { $file_name = md5( $url ); } $tmp_file_name = wp_tempnam( $file_name ); if ( ! $tmp_file_name ) { return new WP_Error( 'import_no_file', __( 'Could not create temporary file.', 'wordpress-importer' ) ); } // Fetch the remote URL and write it to the placeholder file. $remote_response = wp_safe_remote_get( $url, array( 'timeout' => 300, 'stream' => true, 'filename' => $tmp_file_name, 'headers' => array( 'Accept-Encoding' => 'identity', ), ) ); if ( is_wp_error( $remote_response ) ) { @unlink( $tmp_file_name ); return new WP_Error( 'import_file_error', sprintf( /* translators: 1: The WordPress error message. 2: The WordPress error code. */ __( 'Request failed due to an error: %1$s (%2$s)', 'wordpress-importer' ), esc_html( $remote_response->get_error_message() ), esc_html( $remote_response->get_error_code() ) ) ); } $remote_response_code = (int) wp_remote_retrieve_response_code( $remote_response ); // Make sure the fetch was successful. if ( 200 !== $remote_response_code ) { @unlink( $tmp_file_name ); return new WP_Error( 'import_file_error', sprintf( /* translators: 1: The HTTP error message. 2: The HTTP error code. */ __( 'Remote server returned the following unexpected result: %1$s (%2$s)', 'wordpress-importer' ), get_status_header_desc( $remote_response_code ), esc_html( $remote_response_code ) ) ); } $headers = wp_remote_retrieve_headers( $remote_response ); // Request failed. if ( ! $headers ) { @unlink( $tmp_file_name ); return new WP_Error( 'import_file_error', __( 'Remote server did not respond', 'wordpress-importer' ) ); } $filesize = (int) filesize( $tmp_file_name ); if ( 0 === $filesize ) { @unlink( $tmp_file_name ); return new WP_Error( 'import_file_error', __( 'Zero size file downloaded', 'wordpress-importer' ) ); } if ( ! isset( $headers['content-encoding'] ) && isset( $headers['content-length'] ) && $filesize !== (int) $headers['content-length'] ) { @unlink( $tmp_file_name ); return new WP_Error( 'import_file_error', __( 'Downloaded file has incorrect size', 'wordpress-importer' ) ); } $max_size = (int) $this->max_attachment_size(); if ( ! empty( $max_size ) && $filesize > $max_size ) { @unlink( $tmp_file_name ); return new WP_Error( 'import_file_error', sprintf( __( 'Remote file is too large, limit is %s', 'wordpress-importer' ), size_format( $max_size ) ) ); } // Override file name with Content-Disposition header value. if ( ! empty( $headers['content-disposition'] ) ) { $file_name_from_disposition = self::get_filename_from_disposition( (array) $headers['content-disposition'] ); if ( $file_name_from_disposition ) { $file_name = $file_name_from_disposition; } } // Set file extension if missing. $file_ext = pathinfo( $file_name, PATHINFO_EXTENSION ); if ( ! $file_ext && ! empty( $headers['content-type'] ) ) { $extension = self::get_file_extension_by_mime_type( $headers['content-type'] ); if ( $extension ) { $file_name = "{$file_name}.{$extension}"; } } // Handle the upload like _wp_handle_upload() does. $wp_filetype = wp_check_filetype_and_ext( $tmp_file_name, $file_name ); $ext = empty( $wp_filetype['ext'] ) ? '' : $wp_filetype['ext']; $type = empty( $wp_filetype['type'] ) ? '' : $wp_filetype['type']; $proper_filename = empty( $wp_filetype['proper_filename'] ) ? '' : $wp_filetype['proper_filename']; // Check to see if wp_check_filetype_and_ext() determined the filename was incorrect. if ( $proper_filename ) { $file_name = $proper_filename; } if ( ( ! $type || ! $ext ) && ! current_user_can( 'unfiltered_upload' ) ) { return new WP_Error( 'import_file_error', __( 'Sorry, this file type is not permitted for security reasons.', 'wordpress-importer' ) ); } $uploads = wp_upload_dir( $post['upload_date'] ); if ( ! ( $uploads && false === $uploads['error'] ) ) { return new WP_Error( 'upload_dir_error', $uploads['error'] ); } // Move the file to the uploads dir. $file_name = wp_unique_filename( $uploads['path'], $file_name ); $new_file = $uploads['path'] . "/$file_name"; $move_new_file = copy( $tmp_file_name, $new_file ); if ( ! $move_new_file ) { @unlink( $tmp_file_name ); return new WP_Error( 'import_file_error', __( 'The uploaded file could not be moved', 'wordpress-importer' ) ); } // Set correct file permissions. $stat = stat( dirname( $new_file ) ); $perms = $stat['mode'] & 0000666; chmod( $new_file, $perms ); $upload = array( 'file' => $new_file, 'url' => $uploads['url'] . "/$file_name", 'type' => $wp_filetype['type'], 'error' => false, ); // keep track of the old and new urls so we can substitute them later $this->url_remap[ $url ] = $upload['url']; if ( isset( $post['guid'] ) ) { $this->url_remap[ $post['guid'] ] = $upload['url']; // r13735, really needed? } // keep track of the destination if the remote url is redirected somewhere else if ( isset( $headers['x-final-location'] ) && $headers['x-final-location'] != $url ) { $this->url_remap[ $headers['x-final-location'] ] = $upload['url']; } return $upload; } /** * Attempt to associate posts and menu items with previously missing parents * * An imported post's parent may not have been imported when it was first created * so try again. Similarly for child menu items and menu items which were missing * the object (e.g. post) they represent in the menu */ function backfill_parents() { global $wpdb; // find parents for post orphans foreach ( $this->post_orphans as $child_id => $parent_id ) { $local_child_id = $local_parent_id = false; if ( isset( $this->processed_posts[ $child_id ] ) ) { $local_child_id = $this->processed_posts[ $child_id ]; } if ( isset( $this->processed_posts[ $parent_id ] ) ) { $local_parent_id = $this->processed_posts[ $parent_id ]; } if ( $local_child_id && $local_parent_id ) { $wpdb->update( $wpdb->posts, array( 'post_parent' => $local_parent_id ), array( 'ID' => $local_child_id ), '%d', '%d' ); } } // all other posts/terms are imported, retry menu items with missing associated object $missing_menu_items = $this->missing_menu_items; foreach ( $missing_menu_items as $item ) { $this->process_menu_item( $item ); } // find parents for menu item orphans foreach ( $this->menu_item_orphans as $child_id => $parent_id ) { $local_child_id = $local_parent_id = 0; if ( isset( $this->processed_menu_items[ $child_id ] ) ) { $local_child_id = $this->processed_menu_items[ $child_id ]; } if ( isset( $this->processed_menu_items[ $parent_id ] ) ) { $local_parent_id = $this->processed_menu_items[ $parent_id ]; } if ( $local_child_id && $local_parent_id ) { update_post_meta( $local_child_id, '_menu_item_menu_item_parent', (int) $local_parent_id ); } } } /** * Use stored mapping information to update old attachment URLs */ function backfill_attachment_urls() { global $wpdb; // make sure we do the longest urls first, in case one is a substring of another uksort( $this->url_remap, array( $this, 'cmpr_strlen' ) ); foreach ( $this->url_remap as $from_url => $to_url ) { // remap urls in post_content $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->posts} SET post_content = REPLACE(post_content, %s, %s)", $from_url, $to_url ) ); // remap enclosure urls $result = $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->postmeta} SET meta_value = REPLACE(meta_value, %s, %s) WHERE meta_key='enclosure'", $from_url, $to_url ) ); } } /** * Update _thumbnail_id meta to new, imported attachment IDs */ function remap_featured_images() { // cycle through posts that have a featured image foreach ( $this->featured_images as $post_id => $value ) { if ( isset( $this->processed_posts[ $value ] ) ) { $new_id = $this->processed_posts[ $value ]; // only update if there's a difference if ( $new_id != $value ) { update_post_meta( $post_id, '_thumbnail_id', $new_id ); } } } } /** * Parse a WXR file * * @param string $file Path to WXR file for parsing * @return array Information gathered from the WXR file */ function parse( $file ) { $parser = new WXR_Parser(); return $parser->parse( $file ); } // Display import page title function header() { echo '<div class="wrap">'; echo '<h2>' . esc_html__( 'Import WordPress', 'porto' ) . '</h2>'; $updates = get_plugin_updates(); $basename = plugin_basename( __FILE__ ); if ( isset( $updates[ $basename ] ) ) { $update = $updates[ $basename ]; echo '<div class="error"><p><strong>'; /* translators: %s: importer version */ printf( esc_html__( 'A new version of this importer is available. Please update to version %s to ensure compatibility with newer export files.', 'porto' ), $update->update->new_version ); echo '</strong></p></div>'; } } // Close div.wrap function footer() { echo '</div>'; } /** * Display introductory text and file upload form */ function greet() { echo '<div class="narrow">'; echo '<p>' . esc_html__( 'Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, pages, comments, custom fields, categories, and tags into this site.', 'porto' ) . '</p>'; echo '<p>' . esc_html__( 'Choose a WXR (.xml) file to upload, then click Upload file and import.', 'porto' ) . '</p>'; wp_import_upload_form( 'admin.php?import=wordpress&step=1' ); echo '</div>'; } /** * Decide if the given meta key maps to information we will want to import * * @param string $key The meta key to check * @return string|bool The key if we do want to import, false if not */ function is_valid_meta_key( $key ) { // skip attachment metadata since we'll regenerate it from scratch // skip _edit_lock as not relevant for import if ( in_array( $key, array( '_wp_attached_file', '_wp_attachment_metadata', '_edit_lock' ) ) ) { return false; } return $key; } /** * Decide whether or not the importer is allowed to create users. * Default is true, can be filtered via import_allow_create_users * * @return bool True if creating users is allowed */ function allow_create_users() { return apply_filters( 'import_allow_create_users', true ); } /** * Decide whether or not the importer should attempt to download attachment files. * Default is true, can be filtered via import_allow_fetch_attachments. The choice * made at the import options screen must also be true, false here hides that checkbox. * * @return bool True if downloading attachments is allowed */ function allow_fetch_attachments() { return apply_filters( 'import_allow_fetch_attachments', true ); } /** * Decide what the maximum file size for downloaded attachments is. * Default is 0 (unlimited), can be filtered via import_attachment_size_limit * * @return int Maximum attachment file size to import */ function max_attachment_size() { return apply_filters( 'import_attachment_size_limit', 0 ); } /** * Added to http_request_timeout filter to force timeout at 60 seconds during import * @return int 60 */ function bump_request_timeout( $val ) { return 60; } // return the difference in length between two strings function cmpr_strlen( $a, $b ) { return strlen( $b ) - strlen( $a ); } /** * Parses filename from a Content-Disposition header value. * * As per RFC6266: * * content-disposition = "Content-Disposition" ":" * disposition-type *( ";" disposition-parm ) * * disposition-type = "inline" | "attachment" | disp-ext-type * ; case-insensitive * disp-ext-type = token * * disposition-parm = filename-parm | disp-ext-parm * * filename-parm = "filename" "=" value * | "filename*" "=" ext-value * * disp-ext-parm = token "=" value * | ext-token "=" ext-value * ext-token = <the characters in token, followed by "*"> * * @since 0.7.0 * * @see WP_REST_Attachments_Controller::get_filename_from_disposition() * * @link http://tools.ietf.org/html/rfc2388 * @link http://tools.ietf.org/html/rfc6266 * * @param string[] $disposition_header List of Content-Disposition header values. * @return string|null Filename if available, or null if not found. */ protected static function get_filename_from_disposition( $disposition_header ) { // Get the filename. $filename = null; foreach ( $disposition_header as $value ) { $value = trim( $value ); if ( strpos( $value, ';' ) === false ) { continue; } list( $type, $attr_parts ) = explode( ';', $value, 2 ); $attr_parts = explode( ';', $attr_parts ); $attributes = array(); foreach ( $attr_parts as $part ) { if ( strpos( $part, '=' ) === false ) { continue; } list( $key, $value ) = explode( '=', $part, 2 ); $attributes[ trim( $key ) ] = trim( $value ); } if ( empty( $attributes['filename'] ) ) { continue; } $filename = trim( $attributes['filename'] ); // Unquote quoted filename, but after trimming. if ( substr( $filename, 0, 1 ) === '"' && substr( $filename, -1, 1 ) === '"' ) { $filename = substr( $filename, 1, -1 ); } } return $filename; } /** * Retrieves file extension by mime type. * * @since 0.7.0 * * @param string $mime_type Mime type to search extension for. * @return string|null File extension if available, or null if not found. */ protected static function get_file_extension_by_mime_type( $mime_type ) { static $map = null; if ( is_array( $map ) ) { return isset( $map[ $mime_type ] ) ? $map[ $mime_type ] : null; } $mime_types = wp_get_mime_types(); $map = array_flip( $mime_types ); // Some types have multiple extensions, use only the first one. foreach ( $map as $type => $extensions ) { $map[ $type ] = strtok( $extensions, '|' ); } return isset( $map[ $mime_type ] ) ? $map[ $mime_type ] : null; } } } // class_exists( 'WP_Importer' )
Save
Cancel