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 The WordPress Template Hierarchy Page and Post Templates in WordPress Single Post and Post Format Templates

tarry nwaise
tarry nwaise
1,391 Points

appending slugs and ids ot the single.php template

I see the video says you cannot appen slugs and ids to the single.php template the way you can to a page.php template. Why is that?

2 Answers

eberhapa
eberhapa
51,495 Points

Because thats how wordpress handles the files. Take a look on the wordpress hierarchy: http://wphierarchy.com

There you can see that page.php also allows page-$slug.php and page-$id.php. For single pages you're just able to make files with single-$posttype.php if you have custom post types in use.

August Oliver
August Oliver
5,933 Points

You can't append slug and IDs to the single.php template in the same way you can the page.php template.