Problems with draft website pages

Possibly yes, possibly no. I would recommend setting them to private and published so that you can see links working. Drafts cannot be selected as menu links, nor do they have permalinks until they’re published (only the shortlinks and only while logged in), so that is why they aren’t working. If you’re afraid of taking … Read more

Display draft posts on single pages [duplicate]

You need to change into the code, by default wordpress shows only post which are published. In your case you need to change the $args = array( ‘post_status’ => array( ‘publish’, ‘draft’) ); $query = new WP_Query( $args ); for more info you can look into this link: Another thing you can alter your current … Read more