Skip to content

Instantly share code, notes, and snippets.

@vmanthos
Created November 20, 2018 12:21
Show Gist options
  • Save vmanthos/f58dcf571e681d4a9c7cc39901eae57d to your computer and use it in GitHub Desktop.
Save vmanthos/f58dcf571e681d4a9c7cc39901eae57d to your computer and use it in GitHub Desktop.
function activate_plugin_via_php() {
$active_plugins = get_option( 'active_plugins' );
array_push($active_plugins, 'cloudflare-flexible-ssl/plugin.php');
update_option( 'active_plugins', $active_plugins );
}
add_action( 'init', 'activate_plugin_via_php' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment