您可以在函数中添加此代码。php文件。
function example_contextual_help( $contextual_help, $screen_id, $screen ) {
//echo \'Screen ID = \'.$screen_id.\'<br />\';
switch( $screen_id ) {
case \'my_plugin_page_1\' :
$contextual_help .= \'<p>\';
$contextual_help = __( \'Your text here.\' );
$contextual_help .= \'</p>\';
break;
case \'my_plugin_page_2\' :
$contextual_help .= \'<p>\';
$contextual_help = __( \'Your text here.\' );
$contextual_help .= \'</p>\';
break;
}
return $contextual_help;
}
add_filter(\'contextual_help\', \'example_contextual_help\', 10, 3);
要获取特定页面的screen\\u id,只需取消对上述函数中第一行的注释,并检查插件页面的上下文帮助。然后将屏幕id添加到交换机案例中,如“my\\u plugin\\u page\\u 1”。如果你的插件是一个单页插件(或几页),那么你可以只做一个if条件(任何一个都可以),而不是按以下方式切换案例。
if ( $screen_id == \'my_plugin_page\' ) {
$contextual_help .= \'<p>\';
$contextual_help = __( \'Your text here.\' );
$contextual_help .= \'</p>\';
}
return $contextual_help;