[Plugin: Extra User Details] Help Tab in new Versions
-
The help tab it’s not working with the new WordPress Version. I added this:
$hook = 'users_page_extra_user_details'; $screen = WP_Screen::get($hook); $id = 'extra_user_details_help_id'; $title = "Extra User Details"; $callback = false; $screen->add_help_tab( array( 'id' => $id, //unique id for the tab 'title' => $title, //unique visible title for the tab 'content' => $help, //actual help text 'callback' => $callback //optional function to callback ) );
Instead of:
add_contextual_help( 'users_page_extra_user_details', $help );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: Extra User Details] Help Tab in new Versions’ is closed to new replies.