#23814 closed defect (bug) (duplicate)
non-public post types which are shown in admin ui still have 'view post' message
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Post Types | Version: | |
| Severity: | minor | Keywords: | |
| Cc: | msykes@… |
Description
When using CPTs that are public = false yet can be edited in the admin, it will still show a 'View post' link in the updated message when creating/updating a CPT.
This is not right because this leads to a 404 page. When viewing the admin list of that CPT the hoverable actions do not show the 'view' link, which is correct.
Simple example to reproduce the issue:
function codex_custom_init() {
$args = array( 'public' => false, 'show_ui' => true, 'show_in_admin_bar' => true, 'label' => 'Books' );
register_post_type( 'book', $args );
}
add_action( 'init', 'codex_custom_init' );
flick 'public' on and off, saving permalinks in between and try saving book CPTs to see the 'view post' link as well as a 404 page if public = false.
Change History (3)
comment:1
netweblogic — 2 months ago
- Cc msykes@… added
comment:2
DrewAPicture — 2 months ago
- Milestone Awaiting Review deleted
- Resolution set to duplicate
- Status changed from new to closed
comment:3
netweblogic — 2 months ago
thx, searched but did not find!
Note: See
TracTickets for help on using
tickets.

Duplicate of #17609.