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.

Carla Thomas
Front End Web Development Techdegree Student 16,039 Pointsesc_html error (however, code is correct)
I found the correct code here in the community forum but it's not working for me (as well as others).
Here's the code that keeps giving me an error
<?php
function my_plugin_options_page() {
if (!current_user_can('manage_options')) {
wp_die('You do not have sufficient permissions to access this page.');
}
if ( isset( $_POST['my_plugin_hidden_field_submitted'] ) ) {
$my_plugin_username = esc_html( $_POST['my_plugin_username'] );
}
}
?>
Please help.
<?php
function my_plugin_options_page() {
if (!current_user_can('manage_options')) {
wp_die('You do not have sufficient permissions to access this page.');
}
if ( isset( $_POST['my_plugin_hidden_field_submitted'] ) ) {
$my_plugin_username = esc_html( $_POST['my_plugin_username'] );
}
}
?>
1 Answer

Dale Severude
Full Stack JavaScript Techdegree Graduate 71,324 PointsHi Carla,
Your code should be failing the first challenge, not the second. Paste in the required value my_plugin_hidden_field
instead of my_plugin_hidden_field_submitted
and your code will pass.
Carla Thomas
Front End Web Development Techdegree Student 16,039 PointsCarla Thomas
Front End Web Development Techdegree Student 16,039 PointsThanks....I'd been playing around with the code so much (trying to get rid of error) that I overlooked that part.