Skip to content

Instantly share code, notes, and snippets.

@theRealRizeo
Created April 3, 2023 05:52
Show Gist options
  • Save theRealRizeo/b87835f55b105cb76cf856352bb545b4 to your computer and use it in GitHub Desktop.
Save theRealRizeo/b87835f55b105cb76cf856352bb545b4 to your computer and use it in GitHub Desktop.
Filter sites from NS cloner
<?php
/**
* Filter out sites to show in cloning list.
*/
add_filter( 'ns_cloner_sites_list', function( $sites ) {
$my_site_ids = array( 1, 10, 3, 8, 13 ); // The site ids you only want to show. Replace with the ids of your sites.
foreach ( $sites as $id => $name ) {
if ( ! in_array( $id, $my_site_ids, true ) ) {
unset( $sites[ $id ] );
}
}
return $sites;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment