Skip to content

Instantly share code, notes, and snippets.

@tsquez
Last active August 29, 2015 14:19
Show Gist options
  • Save tsquez/66dc778f00d35bd7e228 to your computer and use it in GitHub Desktop.
Save tsquez/66dc778f00d35bd7e228 to your computer and use it in GitHub Desktop.
Remove parent functions in WP-Forge
function your_function_name() {
remove_action( 'action name goes here' );
}
add_action( 'after_setup_theme', 'your_function_name', 9 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment