Skip to content

Instantly share code, notes, and snippets.

@theRealRizeo
Created March 7, 2023 10:48
Show Gist options
  • Save theRealRizeo/71870cd604c98ef1790cf6f3c07fccbd to your computer and use it in GitHub Desktop.
Save theRealRizeo/71870cd604c98ef1790cf6f3c07fccbd to your computer and use it in GitHub Desktop.
NS Cloner exclude certain tables
<?php
add_filter( 'ns_cloner_site_tables', 'customer_exclude_ns_cloner_site_tables', 10, 2 );
/**
* Exclude certain tables from cloning.
*
* @param array $tables The selected tables. This contains the prefix
* @param int $site_id The site id.
*
* @return array $tables
*/
function customer_exclude_ns_cloner_site_tables( $tables, $site_id ) {
// Perform check here to exclude tables.
return $tables;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment