convert_to_screen

函数
convert_to_screen ( $hook_name )
参数
  • (string) $hook_name The hook name (also known as the hook suffix) used to determine the screen.
    Required:
返回值
  • (WP_Screen) Screen object.
定义位置
相关方法
convert_charsget_current_screenset_current_screenconvert_smilieswp_convert_hr_to_bytes
引入
3.0.0
弃用
-

WordPress中的convert_to_screen函数是一个实用函数,它可以将一个屏幕ID或WP_Screen类的实例转换为WP_Screen对象。它主要是用来规范整个WordPress处理屏幕ID的方式,使开发者更容易管理和定制屏幕。

将一个屏幕字符串转换为一个屏幕对象。

function convert_to_screen( $hook_name ) {
	if ( ! class_exists( 'WP_Screen' ) ) {
		_doing_it_wrong(
			'convert_to_screen(), add_meta_box()',
			sprintf(
				/* translators: 1: wp-admin/includes/template.php, 2: add_meta_box(), 3: add_meta_boxes */
				__( 'Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.' ),
				'<code>wp-admin/includes/template.php</code>',
				'<code>add_meta_box()</code>',
				'<code>add_meta_boxes</code>'
			),
			'3.3.0'
		);
		return (object) array(
			'id'   => '_invalid',
			'base' => '_are_belong_to_us',
		);
	}

	return WP_Screen::get( $hook_name );
}

常见问题

FAQs
查看更多 >