Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*************************************************************************
- *********************** [ REMOVE PROJECTS CPT ] *************************/
- function project_unset_post_type(){
- global $wp_post_types;
- if ( isset( $wp_post_types[ 'project' ] ) ) {
- unset( $wp_post_types[ 'project' ] );
- return true;
- }
- return false;
- }
- add_action('init','project_unset_post_type');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement