Skip to content

Instantly share code, notes, and snippets.

@aguilar1181
Created August 6, 2018 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aguilar1181/874f56dfe28f33e44edbc4f9392e29f4 to your computer and use it in GitHub Desktop.
Save aguilar1181/874f56dfe28f33e44edbc4f9392e29f4 to your computer and use it in GitHub Desktop.
use this on a child theme functions to disable custom post types created by pre-made themes
<?php
//Unregister post type
function delete_post_type(){
unregister_post_type('custom_post_type_name');
}
add_action('init','delete_post_type', 100); //priority has to be higher than the register action
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment