Skip to content

Instantly share code, notes, and snippets.

@iandunn
Created May 30, 2014 21:46
Show Gist options
  • Save iandunn/62cfe68734242a0fe3d0 to your computer and use it in GitHub Desktop.
Save iandunn/62cfe68734242a0fe3d0 to your computer and use it in GitHub Desktop.
Activate CampTix core module
<?php
// In an mu-plugin...
function activate_default_camptix_module( $modules ) {
global $camptix;
$modules[] = $camptix->get_default_addon_path( 'require-login.php' );
return $modules;
}
add_filter( 'camptix_default_addons', 'activate_default_camptix_module' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment