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

Stefan Cutajar
Stefan Cutajar
7,747 Points

How to add a css or js file that is only used in one page?

Zak mentioned that on the header and footer you should only include code that you want to be seen on every page. How can I add files that will only be used on one page?

1 Answer

Stefan,

You would still add it the same way but wrap just that piece with is_page()

https://developer.wordpress.org/reference/functions/is_page/

This allows you to target a specific page with a js/css file specific to that page.