How to disable the single view for a custom post type?

Given this custom post type: register_post_type( ‘sample_post_type’, [ ‘labels’ => [ ‘name’ => _x(‘Sample Posts’, ‘post type general name’), ‘singular_name’ => _x(‘Sample Post’, ‘post type singular name’), ], ‘public’ => true, ‘show_in_nav_menus’ => false, ‘exclude_from_search’ => true, ] ); How can I disable the single post view for this particular post type? Displaying a simple … Read more