Skip to content

Instantly share code, notes, and snippets.

@joemcgill
Created November 17, 2013 05:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joemcgill/7509814 to your computer and use it in GitHub Desktop.
Save joemcgill/7509814 to your computer and use it in GitHub Desktop.
Remove a custom post type from a parent theme in WordPress.
add_action('after_setup_theme', 'wp_kill_parent_post');
function wp_kill_parent_post() {
remove_action('init', '<% parent post name %>');
}
// Register your own version in place of the parent post type if you want
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment