How to redirect one admin URL to another when admin page URL has “/admin.php?page=” in it?
I think you will achieve what you want by using [get_current_screen()][1] and reading the properties from WP_Screen object returned as needed. In your case, I think you will need $screen->base or maybe $screen->id. According to WordPress Codex: id (string) The unique ID of the screen and base (string) The base type of the screen. For … Read more