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 trialFlorian Brunner
10,240 PointsCreate Admin Menu - Can't finish challenge
Hi there, I can't find a way to get this challenge right. Could you tell me what the error is?
<?php
function my_plugin_menu() {
// Page Title: My Plugin Settings Page
// Menu Title: My Plugin
// Slug: Same as menu name, but with hyphens instead of spaces
// Make sure user has ability to manage plugin options
// my_plugin_options_page() is the function for what displays on the options page
add_options_page() {
'My Plugin Settings Page',
'My Plugin',
'manage_options',
'My-Plugin',
'my_plugin_options_page'
}
}
add_action ('admin_menu', 'my_plugin_menu');
?>
2 Answers
Andrew Dushane
9,264 PointsThe parameters for add_options_page go inside the parentheses for the function, there shouldn't be curly braces there. See http://codex.wordpress.org/Function_Reference/add_options_page
Florian Brunner
10,240 Pointsthanks!