add_contextual_help

函数
add_contextual_help ( $screen, $help )
参数
  • (string) $screen The handle for the screen to add help to. This is usually the hook name returned by the `add_*_page()` functions.
    Required:
  • (string) $help The content of an 'Overview' help tab.
    Required:
相关
  • WP_Screen::add_help_tab()
定义位置
相关方法
add_comment_metaadd_comments_pagefeed_content_typeadd_object_pagecontent_url
引入
2.7.0
弃用
3.3.0

add_contextual_help: 这个函数用于向WordPress管理页面添加上下文帮助: 该函数需要两个参数:屏幕ID,和一个帮助选项数组。

为一个页面添加上下文帮助文本。

创建一个’概览’帮助标签。

function add_contextual_help( $screen, $help ) {
	_deprecated_function( __FUNCTION__, '3.3.0', 'get_current_screen()->add_help_tab()' );

	if ( is_string( $screen ) )
		$screen = convert_to_screen( $screen );

	WP_Screen::add_old_compat_help( $screen, $help );
}

常见问题

FAQs
查看更多 >