Skip to content

Instantly share code, notes, and snippets.

@pavelrich
Created November 20, 2019 11:22
Show Gist options
  • Save pavelrich/e0fbe002366470f9dd5035e71e8f3065 to your computer and use it in GitHub Desktop.
Save pavelrich/e0fbe002366470f9dd5035e71e8f3065 to your computer and use it in GitHub Desktop.
WordPress — Unregister "reservation" Post Type
<?php
// Unregister "reservation" post type
if ( ! function_exists( 'forqy_unregister_post_type_reservation' ) ) {
function forqy_unregister_post_type_reservation() {
unregister_post_type( 'reservation' );
}
add_action( 'init', 'forqy_unregister_post_type_reservation' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment