function remove_pricing_post_type() { // Check if the custom post type exists before trying to unregister it if (post_type_exists('pricing')) { unregister_post_type('pricing'); } } add_action('init', 'remove_pricing_post_type', 20); // The priority 20 ensures it runs after the custom post type is registered
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter