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 How to Build a WordPress Theme Extending WordPress Template Functionality Multiple Loops in One Template

The functions wp_reset_postdata and wp_reset_query

Hello, There is an error on the video when it say that the function wp_reset_postdata restore the WP_Query object. Actually this function restore the global $post object after a secondary loop as the documentation describes: http://codex.wordpress.org/Function_Reference/wp_reset_postdata The function wp_reset_query should be used after a call to query_posts() as this functions restore the global $post object and the main query (but it`s not recommend to use query_posts anymore). We should be using only wp_reset_postdata after a Secondary loop.