Last active
January 4, 2018 00:00
-
-
Save campaignupgrade/e088dbabb80b6fdf565f912f0ef0dc82 to your computer and use it in GitHub Desktop.
WpAllImport skip dupe check
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'wp_all_import_is_check_duplicates', 'wpai_is_check_duplicates', 10, 2 ); | |
function wpai_is_check_duplicates( $is_check_duplicates, $import_id ) { | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment