Guest User

Untitled

a guest
Apr 26th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function custom_unregister_theme_post_types() {
  2. global $wp_post_types;
  3.  
  4. if ( isset( $wp_post_types["agent"] ) ) {
  5. unset( $wp_post_types[ "agent" ] ); //UPDATED
  6. }
  7.  
  8. }
  9. add_action( 'init', 'custom_unregister_theme_post_types', 20 );
Add Comment
Please, Sign In to add comment