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 Coding Your Own Custom Post Type Templates

Kyle Shamblin
Kyle Shamblin
9,945 Points

Can you use an array for more than one add_theme_support();?

instead of this: add_theme_support('menus');

add_theme_support('post-thumbnails');

is this possible? add_theme_support (array ('menus') , ('post-thumbnails' ) ;

2 Answers

missgeekbunny
missgeekbunny
37,033 Points

No. With how the function is coded it can technically take two arguments and the second is an array of arguments to edit the string you pass to it. It's why it can't be strung together as you're suggesting.

--Edited for clarity--

missgeekbunny is correct. please look at the developer docs for more info