Using the WP_Screen
object, is it possible to add additional tabs to a custom admin settings page?
I already have Screen Options and Help, but I also wish to add a Import/Export tab. I’ve looked in to extending the WP_Screen
object, but it’s declared as final
in the core (/wp-admin/includes/screen.php, line 194 {ver 4.2.1}).
I’d consider adding my import/export option to the Screen Options tab, but looking at WP_Screen
object I can’t see that even this is possible. Edit This is possible using the screen_settings
filter, but I’d still like to achieve my primary goal if possible.