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.

Michael Ørsted
4,475 PointsWhat is wrong wiht my code????
<?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',
'my-plugin',
'manage_options',
'my_plugin_options_page'
)
}
add_action('admin_menu', 'my_plugin_options_page');
function my_plugin_options_page(){
if(!cuttent_user_can('manage_options')){
wp_die('not permission to enter!');
}
echo "welcome";
}
?>
<?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
}
?>
1 Answer

Cristian Altin
12,165 Pointsadd_options_page( $page_title, $menu_title, $capability, $menu_slug, $function);
"manage_options" should be third before menu_slug
Also, are you sure about cuttent_user_can ? The double t? ;-)