Skip to content

Instantly share code, notes, and snippets.

@marlun
Created August 18, 2011 13:57
Show Gist options
  • Save marlun/1154116 to your computer and use it in GitHub Desktop.
Save marlun/1154116 to your computer and use it in GitHub Desktop.
add_action('wpmu_new_blog', 'create_new_site');
function create_new_site($blog_id) {
switch_to_blog($blogid);
// Do all the work
switch_theme('marlun', 'marlun');
restore_current_blog();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment