convert_to_screen()
最后更新于:2021-11-25 22:04:19
convert_to_screen( string$hook_name)Convert a screen string to a screen object
参数
- $hook_name
-
(string) (Required) The hook name (also known as the hook suffix) used to determine the screen.
响应
(GC_Screen) Screen object.
源文件
文件: gc-admin/includes/template.php
function convert_to_screen( $hook_name ) {
if ( ! class_exists( 'GC_Screen' ) ) {
_doing_it_wrong(
'convert_to_screen(), add_meta_box()',
sprintf(
/* translators: 1: gc-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>gc-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 GC_Screen::get( $hook_name );
}