Custom post types not imported properly
Have you tried removing the underscore from your Custom Post Type name? I ran into an issue a few weeks ago that was resolved when I changed to only alphabetical characters.
Have you tried removing the underscore from your Custom Post Type name? I ran into an issue a few weeks ago that was resolved when I changed to only alphabetical characters.
You can consult this answer, but the instructions are a bit unclear, so I’ll clarify them myself here. On the old blog, export the posts using the standard WordPress import/export functionality. If you’re unfamiliar with that, see this link for more information: https://codex.wordpress.org/Importing_Content On the new blog, use the WP Importer to import the XML … Read more
The GUID is not an URL. Use get_permalink() to get the correct URLs. Just ignore the GUID. It is – as the name says – an identifier.
There is a hook that worked for me in most case while those 3 hooks you use fail. It’s transition_post_status : add_action(‘transition_post_status’, ‘sterilize_vehicle_information’, 10, 3); function sterilize_vehicle_information( $post, $new_status, $old_status) { $internet_price = get_field(‘internet_price’,$post->ID); if( $new_status == ‘publish’ && old_status != ‘publish’ ) { update_post_meta( $post->ID, ‘internet_price’, preg_replace( “/[^0-9]/”, “”, $internet_price ) ); } } … Read more
I solved the problem… my source blog was private i.e. required password… I made it public for couple of minutes, and importer plugin did it’s job properly!
Have you verified permissions on the upload_tmp_dir (C:\Temp)? It’s possible that the upload is actually failing there rather than in the destination directory.
The default exporter will do this. Instead of selecting “All Content”, choose “Post” and then a category.
As far as I know no one ever [publicly] documented it and all questions about that are met with “it’s like RSS, want documentation – do it yourself”.
I don’t think you should create a new column in wp_posts… This kind of info is stored in wp_postmeta. When I need this kind of importing (Excel->WP), I use CSV Importer, as you can assign categories, tags and custom field to the imported data. You’ll probably need to do a couple of tests with few … Read more
http://bavatuesdays.com/importing-a-single-wp-blog-to-a-wpmu-installation/ http://sillybean.net/wordpress/migrating-single-wordpress-installations-into-multisite-networks/