Skip to content

Instantly share code, notes, and snippets.

@andrezrv
Created April 7, 2014 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrezrv/10039926 to your computer and use it in GitHub Desktop.
Save andrezrv/10039926 to your computer and use it in GitHub Desktop.
Auto activate Jetpack modules.
<?php
/**
* Auto activate Jetpack modules.
*/
function activate_jetpack_modules( $modules ){
$modules = array(
'widget-visibility',
'custom-css',
);
return $modules;
}
add_filter( 'option_jetpack_active_modules', 'activate_jetpack_modules' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment