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

After the if statement, require a file named "page-wrapper.php", located inside of the includes folder

Totally lost on what this question requires

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 (!current_user_can('manage_options')) { wp_die('You do not have sufficient permissions to access this page.'); } // the absence of this closing tag is causing the problems! if( isset( $POST['my_plugin_hidden_field']) ) { $my_plugin_username = esc_html( $_POST['myplugin_username'] ); require( 'includes/page-wrapper.php' ); }





?>

1 Answer

Liam Maclachlan
Liam Maclachlan
22,805 Points

Hi Tinashe,

<?php

function my_plugin_options_page() {

    if (!current_user_can('manage_options')) {
        wp_die('You do not have sufficient permissions to access this page.');
    }
    require('includes/page-wrapper.php');
}

?>

Looked like there was some additional code in your example but I believe this is what you are looking for :)

Basically what they are asking you to is "after the check has happened (to see if they are actually allowed to access this page) add the file we are going to use to display what they are allowed to see" :)

Cheers Liam