
Untitled
By: a guest on
Sep 2nd, 2010 | syntax:
PHP | size: 0.26 KB | hits: 2,208 | expires: Never
<?php
if ( ! function_exists( 'unregister_post_type' ) ) :
function unregister_post_type( $post_type ) {
global $wp_post_types;
if ( isset( $wp_post_types[ $post_type ] ) ) {
unset( $wp_post_types[ $post_type ] );
return true;
}
return false;
}
endif;