Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Arifursdev/93e7032ed9a81b5acdbb2b7a1b01759e to your computer and use it in GitHub Desktop.
Save Arifursdev/93e7032ed9a81b5acdbb2b7a1b01759e to your computer and use it in GitHub Desktop.
Disable WordPress Import Duplicate Checking
<?php
add_filter( 'wp_import_existing_post', function ( $post_exists ) {
$post_exists = false;
return $post_exists;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment