Skip to content
Read For Learn
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP

Identifying Importer Posts

Two things I could imagine:

  • Check the post_modified value. Maybe import creates a definitive timestamp that you could use. You’ll still have to save the import date somewhere so you can check against it.
  • I do some post importing via a stream/HTTP response (this is not the native importer). During the import, I map my SysBot Plugin user to every post that has no existing user in the installation. This allows me to use archives, filter the admin post list table, etc. A very convenient solution to check those. It also allows posts that get reviewed to get out of the “imported but not touched yet”-queue as the author can change. You might also be able to use the native importer and use the 'import_allow_create_users' with simply setting a callback of __return_false.
  • Infiltrate the WP importer and attach a meta value during import. There’s a hook that triggers for every imported post meta key named 'import_post_meta'.

In case you’re infiltrating the native importer plugin, you’d need to start at the 'import_start' hook. The last hook in the system (where you might want to check if everything went fine), is the 'import_end' hook.

EDIT

I just encountered a class that I’ve not even known that it exists (in core, not the WP Importer plugin): WP_Importer. This class has a method, named get_imported_posts().

So in theory you could do the following:

$importer = new WP_Importer;
$importer_name="???";
$bid = get_current_blog_id();
$imported_posts = $importer->get_imported_posts( $importer_name, $bid );

The meta key that gets searched for is built by the two meta keys:

$meta_key = $importer_name . '_' . $bid . '_permalink';

So there seems to be a unique trace route that one can follow.

Update #2

An example query you could run would be:

var_dump( $wpdb->get_results( "
    SELECT post_id, meta_value 
    FROM {$wpdb->postmeta} 
    WHERE meta_key 
    LIKE '%_permalink%'
" ) );

This should bring all similar posts up an allow you to determine the “importer_name” easier.

Edit #3

There’s get_importers(), which you can dump to see what importers are registered (using register_importer()). This should help identifying the actual importer name.

Related Posts:

  1. INSERT ON DUPLICATE KEY UPDATE failes in postmeta table
  2. Mass importing json data into custom fields (postmeta)
  3. When importing posts to a new site if XML file has postmeta not setup on new server what happens?
  4. How do I retrieve the slug of the current page?
  5. Most efficient way to get posts with postmeta
  6. Get posts by meta value
  7. Explanation of update_post_(meta/term)_cache
  8. How to extract data from a post meta serialized array?
  9. How to save an array with one metakey in postmeta?
  10. WordPress is stripping escape backslashes from JSON strings in post_meta
  11. How can I get the post ID from a WP_Query loop?
  12. Check if Post Title exists, Insert post if doesn’t, Add Incremental # to Meta if does
  13. How to update_post_meta value as array
  14. Adding meta tag without plugin
  15. What’s the point of get_post_meta’s $single param?
  16. What is the different between an attachment in wp_posts and an attachment in wp_postmeta?
  17. How to edit a post meta data in a Gutenberg Block?
  18. Importing data for advanced custom fields plugin?
  19. Sanitizing integer input for update_post_meta
  20. post formats – how to switch meta boxes when changing format?
  21. Execute action after post is saved with all related post_meta records (data)
  22. Lack of composite indexes for meta tables
  23. Get a single post by a unique meta value
  24. InDesign to WordPress workflow
  25. if get_post_meta is empty do something
  26. How we get_post_meta without post id
  27. How get post id from meta value
  28. What is the code to get the download link for a product in WooCommerce?
  29. Safe to delete blank postmeta?
  30. advanced custom fields update_field for field type: Taxonomy
  31. Wondering how to turn your firefox bookmarks into a WordPress blog?
  32. update_post_meta not saving when value is zero
  33. Content hooks vs User hooks
  34. Meta compare with date (stored as string) not working
  35. Trying to get custom post meta through Jetpack JSON API [closed]
  36. What’s the database relationship between a post and its attachments
  37. How to update/insert custom field(post meta) data with wordpress REST API?
  38. Export WP database for import using WP-CLI on Vagrant Box
  39. Restrict post edit/delete based on user ID and custom field
  40. get_post_meta returning empty string when data shows in the database
  41. publish_post action hook doesn’t give post_meta_data
  42. Remove WordPress.org Meta link
  43. Remove post meta keys
  44. Is there a way to import terms into WordPress?
  45. How to access the post meta of a post that has just been published?
  46. Why time functions show invalid time zone when using ‘c’ time format?
  47. Why is get_post_meta returning an array when I specify it as single?
  48. How to update/delete array in post meta value?
  49. How to get all term meta for a taxonomy – getting term_meta for taxonomy
  50. Adding an assisting editor box to Post page
  51. What server settings are required to import WordPress XML file
  52. delete unused postmeta
  53. importing data from non-wordpress mysql db
  54. Should I sanitize custom post meta if it is going to be escaped later?
  55. Add post meta based on another post meta value before publish post
  56. WXR import problem — not including categories
  57. How do I retrieve multi-dimensional arrays from the wp_postmeta table, & display on a website?
  58. Front-end update_post_meta snippet displays white screen?
  59. Query between two meta values?
  60. Save both current and new version of post meta
  61. Get Advanced Custom Fields values before saving [closed]
  62. Give extra post-meta to RSS feeds
  63. How to get meta value in wp_attachment_metadata
  64. WP REST API “rest_no_route” when trying to update meta
  65. Clean up output added via wp_head()
  66. List posts under meta_value heading
  67. Why am I getting an infinite loop with have_posts?
  68. get_post_meta – get a single value
  69. delete value 0 in post meta [closed]
  70. Can I safely delete a record, manually, in the wp postmeta table?
  71. How to store post meta in an array?
  72. What action hook updates post meta?
  73. Can’t translate the post meta data (Date) in another language
  74. get_post_meta / update_post_meta array
  75. adding a URL to a post meta
  76. Exclude a category from the filed under list
  77. Insert post without actions/hooks
  78. Short of raw SQL, can I query for multiple attachment metadata that have a given array key?
  79. How do I access post meta data when publishing a new post in Gutenberg?
  80. update_post_meta() not working when used with WordPress action
  81. Convert a static website to a WordPress theme and import all existing content
  82. Using Advanced Custom Field (ACF) to insert meta description on each page
  83. Triple meta_key on custom SELECT query
  84. get_post_custom()
  85. Adding meta data to an attachment post
  86. update_post_meta not adding anything.(Nor add_post_meta)
  87. loop through all meta keys with get_post_meta
  88. Get posts by meta value with date
  89. How to add meta tag to wordpress posts filter?
  90. How to Import Categories with Descriptions from a CSV File?
  91. Are multiple values from get_post_meta guaranteed to be ordered?
  92. Get updated post meta on save_post action?
  93. Get post from meta_key and meta_value
  94. Add a post metadata if only the key and value does not exist
  95. get_post_meta returns bool(false)
  96. How metadata API works?
  97. Correct processing of `$_POST`, following WordPress Coding Standards
  98. Create Posts using Import>RSS/WXR/XML and pass values to Custom Fields
  99. Metabox Data not being saved [closed]
  100. How can I get values using key in Carbon Fields from Multiselect?
Categories post-meta Tags bulk-import, import, post-meta
Advanced Custom Fields query
How to gain access to each menu item in wordpress?

Recommended Hostings

Cloudways: Realize Your Website's Potential With Flexible & Affordable Hosting. 24/7/365 Support, Managed Security, Automated Backups, and 24/7 Real-time Monitoring.

FastComet: Fast SSD Hosting, Free Migration, Hack-Free Security, 24/7 Super Fast Support, 45 Day Money Back Guarantee.

Recent Added Topics

  • Bug in translation system: load_theme_textdomain() returns true, files are available and accessible but the language defaults to english
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • Get the name of the template/*html file used
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
  • How to display the description of a custom post type in the dashboard?
  • Critical error on image display
  • Copying WP data and files into new install?
  • How to determine the DirectAdmin WordPress backup date?
  • How to get list of ALL tables in the database?
© 2026 Read For Learn
  • Database
    • Oracle
    • SQL
  • algorithm
  • asp.net
  • assembly
  • binary
  • c#
  • Git
  • hex
  • HTML
  • iOS
  • language angnostic
  • math
  • matlab
  • Tips & Trick
  • Tools
  • windows
  • C
  • C++
  • Java
  • javascript
  • Python
  • R
  • Java Script
  • jQuery
  • PHP
  • WordPress