When you use add_submenu_page()
, add_menu_page()
etc and expect the settings pages to appear in your multisite dashboard, consider using network_admin_menu
hook instead of admin_menu
1 2 3 4 5 6 7 8 | add_action( 'network_admin_menu', 'network_settings_page' ); function network_settings_page(){ add_submenu_page( ... ) } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.