Complete the code to get posts with the latest date first.
$args = array('post_type' => 'post', 'orderby' => '[1]');
The 'orderby' parameter set to 'date' sorts posts by their publish date.
Complete the code to limit the query to 5 posts.
$args = array('posts_per_page' => [1]);
Setting 'posts_per_page' to 5 limits the query to 5 posts.
Fix the error in the query argument to exclude sticky posts.
$args = array('post_type' => 'post', 'ignore_sticky_posts' => [1]);
The 'ignore_sticky_posts' parameter must be boolean true to exclude sticky posts.
Fill both blanks to query posts from category ID 3 and order by title ascending.
$args = array('cat' => [1], 'orderby' => '[2]', 'order' => 'ASC');
Category ID 3 is set with 'cat' => 3, and ordering by 'title' sorts posts alphabetically.
Fill all three blanks to query posts with meta key 'color', meta value 'blue', and order by meta value ascending.
$args = array('meta_key' => '[1]', 'meta_value' => '[2]', 'orderby' => '[3]', 'order' => 'ASC');
Setting 'meta_key' to 'color' and 'meta_value' to 'blue' filters posts by that meta. Ordering by 'meta_value' sorts by the meta value.