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 trialCarla 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,350 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.