添加自定义元框add_meta_box
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
$id | 必需。元框ID(用于元框的'id'属性) | string | ||
$title | 必需。元框标题 | string | ||
$callback | 必需。填充元框所需的内容,该函数会将内容输出 | callable | ||
$screen | 可选。在什么页面显示 | string|array|WP_Screen | null | |
$context | 可选。在什么位置显示 | string | 'normal', 'side', 'advanced' | advanced |
$priority | 可选。显示的优先级 | string | 'high', 'core', 'default', 'low' | default |
$callback_args | $args属性的数据(这是传递给回调的第二个参数) | array | null |