Eine einfache Möglichkeit festzustellen, ob man mit „add_contextual_help()“ oder „get_current_screen()->add_help_tab“ arbeiten muss, um die abwärts Kompatibilität zu behalten.
<?php
if (method_exists(get_current_screen(),'add_help_tab')) {
get_current_screen()->add_help_tab( array(
'id' => 'plugininfo',
'title' => 'Plugin Info',
'content' => 'Text') );
} elseif (function_exists('add_contextual_help')) {
add_contextual_help( get_current_screen(), 'Text');
}