function swp_plugin_options()
{
    // Make sure the person accessing this link has proper permissions to access it
    if (!current_user_can('manage_options')) {
        wp_die(__('You do not have sufficient permissions to access this page.'));
    }
    swp_build_options_page();
}
示例#2
0
/**
 * Build the Settings Page Form
 */
function swp_plugin_options()
{
    if (current_user_can('manage_options')) {
        swp_build_options_page();
    }
}