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 WordPress Theme Development The WordPress Loop The WordPress Loop Quiz

complete the code for shorthand below- <? php if (...........): ............(have_post()): .........;?>

what am i missing because below is my answer

<?php if (have_posts() ): while (have_posts()): the_post();?>

but it keeps keeps giving me a bummer

1 Answer

Patricia Hector
Patricia Hector
42,901 Points

Your answer is correct. I just did the quiz again to double-check and everything was perfect. So I think your problem may be in the punctuation. Check you are adding what is exactly need it. For instance, the last semicolon is already there, so when you're typing

the_post()

you don't need to add the semicolon because in that case, it will cause an error.

thanks Pat i woke up at 12 midnight and i tried it again and walla i did it. Could nt sleep cz i knew i was doing smthing wrong.