Skip to content

Instantly share code, notes, and snippets.

@jeremyboggs
Last active August 29, 2015 13:57
Show Gist options
  • Save jeremyboggs/9628054 to your computer and use it in GitHub Desktop.
Save jeremyboggs/9628054 to your computer and use it in GitHub Desktop.
Code to run on WP theme activation and deactivation.
<?php
/**
* On theme activation.
*/
function ivanhoe_after_switch_theme($theme_name) {
}
add_action('after_switch_theme', 'ivanhoe_after_switch_theme');
/**
* On theme deactivation.
*/
function ivanhoe_switch_theme($theme_name) {
}
add_action('switch_theme', 'ivanhoe_switch_theme');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment