Remove custom post type – xóa custom post type

Chèn vào file functions.php trong theme.

function delete_post_type(){
	unregister_post_type( 'portfolio');
	unregister_post_type( 'documentation');
}
add_action('init','delete_post_type', 100);

Leave a Reply

Your email address will not be published. Required fields are marked *