0
0
Wordpressframework~10 mins

Posts vs pages difference in Wordpress - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a WordPress post with the title 'Hello World'.

Wordpress
<?php wp_insert_post(array('post_title' => '[1]', 'post_content' => 'Welcome to my blog!', 'post_status' => 'publish')); ?>
Drag options to blanks, or click blank then click option'
ASample Post
BMy Page
CHello World
DNew Page
Attempts:
3 left
💡 Hint
Common Mistakes
Using a page title instead of a post title.
2fill in blank
medium

Complete the code to create a WordPress page with the title 'About Us'.

Wordpress
<?php wp_insert_post(array('post_title' => '[1]', 'post_content' => 'About our company.', 'post_status' => 'publish', 'post_type' => 'page')); ?>
Drag options to blanks, or click blank then click option'
ABlog Post
BAbout Us
CHome
DContact
Attempts:
3 left
💡 Hint
Common Mistakes
Using a post title instead of a page title.
3fill in blank
hard

Fix the error in the code to correctly specify the post type as a page.

Wordpress
<?php wp_insert_post(array('post_title' => 'Services', 'post_content' => 'Our services.', 'post_status' => 'publish', 'post_type' => '[1]')); ?>
Drag options to blanks, or click blank then click option'
Apage
Bpost
Carticle
Dblog
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'post' or 'blog' instead of 'page'.
4fill in blank
hard

Fill both blanks to create a post with publish status.

Wordpress
<?php wp_insert_post(array('post_title' => 'News Update', 'post_content' => 'Latest news.', 'post_status' => '[1]', 'post_type' => '[2]')); ?>
Drag options to blanks, or click blank then click option'
Apublish
Bdraft
Cpost
Dpage
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'draft' status or 'page' post_type for a post.
5fill in blank
hard

Fill all three blanks to create a page with a title, content, and published status.

Wordpress
<?php wp_insert_post(array('post_title' => '[1]', 'post_content' => '[2]', 'post_status' => '[3]', 'post_type' => 'page')); ?>
Drag options to blanks, or click blank then click option'
AContact Us
BGet in touch with us.
Cpublish
Ddraft
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'draft' status or wrong content for the page.