Remove Post Page “View Post” Link

Changing the public argument of register_post_type() will remove the link to view your custom post type publicly.

'public' => false, 

See: WordPress Codex

Note that this will also hide your custom post type from the admin navigation menus, which you might not want. To hide the ‘View Post’ link but keep your post type in the admin menus use show_ui as well like so:

'public'  => false,
'show_ui' => true,