-
Notifications
You must be signed in to change notification settings - Fork 0
Field Types
MD Sultan Nasir Uddin edited this page Jun 20, 2018
·
2 revisions
Here are the built-in fields you can include in your metabox.
- text
- textarea
- number
- hidden
- url
- colorpicker
- select
- wysiwyg
- checkbox
- radio
- date
[
'type' => 'text', // type of the fields
'name' => 'custom_text', //meta name
'id' => 'custom_text', //optional
'label' => 'Custom Text',
'value' => 'Default value', //optional
'placeholder' => 'Type a text', //optional
'sanitize' => 'esc_html',//optional
'help' => 'some helping hints', //optional
'tooltip' => 'Text that will be in tooltip', //optional
'class' => 'custom-css-class', //optioanal
'wrapper_class' => 'custom-wrapper-css-class', //optional
'required' => 'true', //optional
]