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 trialKyle 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,118 Pointsmissgeekbunny is correct. please look at the developer docs for more info
Kyle Shamblin
9,945 PointsKyle Shamblin
9,945 PointsThanks!