Opened 7 years ago
Last modified 7 years ago
#42089 new enhancement
Function to detect if current page is a preview of a draft
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | 4.8.2 |
Component: | Posts, Post Types | Keywords: | |
Focuses: | Cc: |
Description (last modified by )
It would be very helpful if there was a function to detect if the page being viewed is a preview of a draft. Call this is_draft_preview().
Currently, you can achieve this check with code like this:
<?php function is_draft_preview() { global $post; $is_draft = 'draft' === $post->post_status; return ( is_preview() && $is_draft ); }
Change History (1)
Note: See
TracTickets for help on using
tickets.