I have created a custom post type, but it just to list some data on a page and it doesn’t have any single.php.
How do i disable so on the post page when i click publish it doesn’t show the “View Page” link and also how do i disable the “View” link in the columns for that post type.
Thanks
Changing the
public
argument ofregister_post_type()
will remove the link to view your custom post type publicly.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:The previous answer is incorrect. The message at the top of a post edit page cannot be modified using labels. You need to use the
post_updated_messages
filter.The following function will customize the messages using the name of the post type – handy if you’re using custom post types. It’s a modified version of the example on the WordPress Codex.
Notice that the View and Preview links are controlled with the
$viewLink
,$previewLink
, and$schedPreviewLink
variables, which will only appear if the visibility of the current post’s post type is set to public.