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 trialDon Shipley
19,488 PointsParse error: syntax error, unexpected '(', expecting ';' single-portfolio.php on line 25
'<?php get_header(); ?>
<section class="two-column row no-max pad"> <div class="small-12 columns"> <div class="row"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <!-- Primary Column --> <div class="small-12 medium-7 medium-offset-1 medium-push-4 columns"> <div class="primary">
<?php the_field('images'); ?>
</div>
</div>
<!-- Secondary Column --> <div class="small-12 medium-4 medium-pull-8 columns"> <div class="secondary">
<h1><?php the_title(); ?></h1>
<p><?php the_field('description'); ?></p>
</div>
</div>
<?php endwhile(); endif; ?>
</div>
</section>
<?php get_footer(); ?>'
3 Answers
Erik McClintock
45,783 PointsDon,
Near the bottom of your code, when you call "endwhile;", you have added extraneous parenthesis.
You have:
<?php endwhile(); endif; ?>
You want:
<?php endwhile; endif; ?>
Erik
Don Shipley
19,488 PointsThank you. I added them for they are on the video..
Henry Reyes
376 PointsI also had the same error. Zac wrote it wrong and later on the video it seems like him fixed it however never pointed that out!
Too bad. So many errors.
Paul Roberts
7,928 PointsPaul Roberts
7,928 PointsDon is correct. Zac does actually write: endwhile(); in the video. So thanks for clearing that up!
Much appreciated.