Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created April 4, 2026 08:18
Show Gist options
  • Select an option

  • Save plugin-republic/2e1377358484b0b84fc1abdb2c73a1bd to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/2e1377358484b0b84fc1abdb2c73a1bd to your computer and use it in GitHub Desktop.
<?php
/**
* Update variation taxonomies after WP All Import import completes
*/
function demo_after_xml_import( $import_id, $import ) {
if( function_exists( 'wcbvp_update_all_variations' ) ) {
wcbvp_update_all_variations();
}
}
add_action( 'pmxi_after_xml_import', 'demo_after_xml_import', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment