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

Jose Torres
12,947 PointsWordpress Admin Theme
I'd like to know what workflow would be best suited for an admin theme creation. I've read in the codex that its best to use a plugin for this.
3 Answers

Matt Campbell
9,767 PointsYou don't have to use a plugin. Just create a stylesheet and use the hook to load it admin side. You'll need to do this when creating meta boxes and the like.
All a plugin will do is apply an admin theme. Won't allow you to make one yourself.
Admin side is just a website. All the same rules apply.

Jose Torres
12,947 PointsThank you Matthew, I'll take that approach.

Jose Torres
12,947 PointsUpdate: in the past days I've been working hard on the admin theme and what I've found out is that even though we can edit the theme as a normal theme (with a bunch of custom paths and hooks) its much better to work on it as a plugin. Say you've installed a new theme that plays a bit with the admin then this might really mess up your theme. With a plugin you might have some inconsistencies but its much easier to fix.