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 Custom Post Type Templates in WordPress The Portfolio Homepage

Note the CPT UI auto formats post type to be portfolio_. Note the underscore after the portfolio.

Instead of:

$args = array( 'post_type' => 'portfolio' );

It should be:

$args = array( 'post_type' => 'portfolio_' );

Note the underscore after portfolio. I believe CPT UI changed since this video was created and now auto adds the underscore after the post type.This finally made the image show up for me. Hope it helps someone!

Andres Ramirez
Andres Ramirez
18,094 Points

I can't seem to get the images on Portfolio to show up. I made sure the post type and pages are all set to portfolio, and nothing!