Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

I can not pass this quiz. (My English is not good.)

The ___ () function helps us customize the WordPress Loop using special parameters.

When you use the following in your code $query = new WP_Query( $args ); What must you also add before have_posts() in your custom Loop? ___ have_posts()

2 Answers

Hi Arda,

The first is wp_query and the second one is $query->.

Hope that helps

-Rich

Thank you for your comment.

No problem :)

You would have to add $query->

In the WordPress Reference for WP_Query there are several examples about the proper use. Hope this helps

Thank you for your comment.