Skip to content

Instantly share code, notes, and snippets.

@raideus
Created August 10, 2012 17:16
Show Gist options
  • Save raideus/3315841 to your computer and use it in GitHub Desktop.
Save raideus/3315841 to your computer and use it in GitHub Desktop.
Automatically set license keys for WordPress plugins
<?php
function auto_set_license_keys() {
if ( !get_option('acf_options_page_ac') && defined('ACF_OPTIONS_KEY') ) {
update_option('acf_options_page_ac', ACF_OPTIONS_KEY);
}
}
add_action('after_switch_theme', 'auto_set_license_keys');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment