createAdminPage($page); $this->pageInitialization(); } public function addAdminMenu() { // This page will be under "Settings" add_options_page( 'Application Insights Plugin Options', 'Application Insights', 'manage_options', 'applicationinsights-setting-admin', array( $this, 'createAdminPage' ) ); } public function createAdminPage($page) { // Set class property $this->options = get_option( 'applicationinsights_options' ); ?>

Application Insights Settings

', isset( $this->options['instrumentation_key'] ) ? esc_attr( $this->options['instrumentation_key']) : '' ); } }