Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Kyle Shamblin
9,945 PointsCan 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
37,033 PointsNo. 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--

Jacob Mishkin
23,103 Pointsmissgeekbunny is correct. please look at the developer docs for more info
Kyle Shamblin
9,945 PointsKyle Shamblin
9,945 PointsThanks!