I am setting up the server side of the WordPress installation for the client, and I have added some custom post types. They are displayed in the interface through a custom loop within the same page, so users should not access individual user messages.
To ensure that they are not accidentally available, I removed the Permalink selection box, which includes the "Show Message" button. I would like to add a “View Post” link at the top of the page, next to “Add a new employee.” (If this is not possible, I would agree to intercept and replace the "Add a new employee" button).
I'm looking for a WordPress hook to place a button there, but I haven't found anything yet. The closest thing that I have found - this blog post WP Core (citing , , ), but none of these will not work for this. edit_form_advancededit_form_after_editoredit_form_after_title
The button I would like to add would be this PHP:
<a class="add-new-h2" href="<?php echo $displaypage.get_the_title($post_ID); ?>">View <?php echo $posttype; ?></a>
C $displaypagewill be something like strings'/about-us/our-people/#'
In fact, all I need is to find a way to connect it. I know what to add as soon as I learn how to add it.

Edit:
, , javascript, - . , , , JS, (jQuery , , ).