get_options(); $page = empty($target) ? "home" : $target; return "https://40nuggets.com/dashboard/{$page}.php?alk={$options->akl}"; } //switch account submenu add_action('admin_menu', 'FortyNuggets_create_submenu_page'); function FortyNuggets_create_submenu_page() { add_submenu_page( '40Nuggets', // Register this submenu with the menu defined above 'Switch Account', // The text to the display in the browser when this menu item is active 'Switch Account', // The text for this menu item 'administrator', // Which type of users can see this menu '40Nuggets-login', // The unique ID - the slug - for this menu item 'FortyNuggets_submenu_login_page_display' // The function used to render the menu for this page to the screen ); } function FortyNuggets_submenu_login_page_display() { require_once(dirname(__FILE__) . '/login.php'); } ?>