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 trial

WordPress How to Build a WordPress Plugin Building a WordPress Plugin Settings Page Admin Area Forms in WordPress

Carla Thomas
seal-mask
.a{fill-rule:evenodd;}techdegree
Carla Thomas
Front End Web Development Techdegree Student 16,039 Points

esc_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.

plugin.php
<?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
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,349 Points

Hi 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.