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 From Bootstrap to WordPress Add Bootstrap Components to WordPress Theme Finishing Up Our Bootstrap Slideshow Carousel

Dmitri Belfort
Dmitri Belfort
4,337 Points

Current post conditional

Its kinda unclear for me, why the current post has to be == 0, and only then display the class active? What if the current post is equal to 1 for example?

1 Answer

Ryan Hunt
Ryan Hunt
16,091 Points

Since the current_post is zero based, it means that the post with the id 0 is the first post in the loop. If the current post was 1, it'll display the second image in the loop. The active class means that that image is displayed in the carousel.