Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Benjamin Ramage
Front End Web Development Techdegree Student 14,104 PointsMy single-portfolio.php file is not showing up?
My Code:
<?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(); ?>
2 Answers

Jan BM
3,795 Pointswere you able to run it successfully? I looked into your code: endwhile(); it didn't work to my local, what i did was to remove "()" like this: endwhile;

Joshua "TechDev" Walker
6,823 PointsJan BM thank you so much for your comment!
I originally thought it was weird that we added () to the statement but its all good still getting a lot out of this course and the TH community.
CHEERS
Benjamin Ramage
Front End Web Development Techdegree Student 14,104 PointsBenjamin Ramage
Front End Web Development Techdegree Student 14,104 PointsAll sorted. Thanks Rich!!!
Rich Bagley
25,868 PointsRich Bagley
25,868 PointsNo problem. Happy to help :)
-Rich