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

how to Create a template WordPress Admin Panel

How to create a control panel for the WordPress template from which I can control the properties of the template . Please show me on the course to do so

1 Answer

Gary Stewart
Gary Stewart
14,142 Points

Hi,

Look into the Wordpress documentation for add_dashboard_page() this will create a page under whichever dashboard menu you like from which you can custom code in a settings page for your theme, I tend to do this and then use update_option() function to add the settings as values to be stored.

Thanks Gary