Bird
0
0

You want to schedule a post for tomorrow at 9 AM and keep it as a draft until then. Which combination of post_status and post_date should you use?

hard📝 state output Q15 of 15
Wordpress - Content Management
You want to schedule a post for tomorrow at 9 AM and keep it as a draft until then. Which combination of post_status and post_date should you use?
A<code>post_status = 'future'</code> and <code>post_date</code> set to tomorrow 9 AM
B<code>post_status = 'draft'</code> and <code>post_date</code> set to current time
C<code>post_status = 'draft'</code> and <code>post_date</code> set to tomorrow 9 AM
D<code>post_status = 'pending'</code> and <code>post_date</code> set to tomorrow 9 AM
Step-by-Step Solution
Solution:
  1. Step 1: Clarify requirements

    "Schedule for tomorrow" means set post_date to tomorrow 9 AM; "keep as draft" means no auto-publishing, so use post_status = 'draft'.
  2. Step 2: Draft status behavior

    Draft prevents publishing regardless of post_date; future dates do not trigger auto-publish.
  3. Step 3: Set future date for correct publish timing

    Combine post_status = 'draft' with post_date tomorrow: stays draft now, dated tomorrow when manually published.
  4. Final Answer:

    post_status = 'draft' and post_date set to tomorrow 9 AM -> Option C
  5. Quick Check:

    Draft + future post_date = draft with future date [OK]
Quick Trick: Draft + future post_date stages post without auto-publishing [OK]
Common Mistakes:
  • Using 'future' status which auto-publishes at the date
  • Draft + current post_date, wrong date when published later
  • Using 'pending' status instead of draft

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Wordpress Quizzes