Question: WP_Query is the WordPress query class that is used to fetch posts from the database. How would you create a new instance of this class?
- `$query = new query_posts();`
- `$query = new WP_Query();`
- `$query = query_posts();`
- `$query = get_posts();`
Answer: The correct answer of the above question is Option B:`$query = new WP_Query();`