-
Notifications
You must be signed in to change notification settings - Fork 420
Field Types
Here's the built-in fields you can include in your metabox. You can also add your own field types.
Note that all the id's have $prefix in them. It's a good practice to create a unique prefix for your fields so you don't risk using the same id as another theme/plugin. Take a look at example-functions.php to see how you define the prefix.
Not all built-in fields have been documented, so please see the example file for more types.
title
text
text_small
text_medium
text_email
text_url
text_money
textarea
textarea_small
textarea_code
text_date
text_time
select_timezone
text_date_timestamp
text_datetime_timestamp
text_datetime_timestamp_timezone
colorpicker
radio
radio_inline
taxonomy_radio
taxonomy_radio_inline
select
taxonomy_select
checkbox
multicheck
taxonomy_multicheck
taxonomy_multicheck_inline
wysiwyg
file
file_list
oembed
group
A large title (useful for breaking up sections of fields in metabox). Example:
array(
'name' => 'Test Title',
'desc' => 'This is a title description',
'type' => 'title',
'id' => $prefix . 'test_title'
),
Standard text field (large). Example:
array(
'name' => 'Test Text',
'desc' => 'field description (optional)',
'default' => 'standard value (optional)',
'id' => $prefix . 'test_text',
'type' => 'text'
),
Small text field. Example:
array(
'name' => 'Test Text Small',
'desc' => 'field description (optional)',
'default' => 'standard value (optional)',
'id' => $prefix . 'test_textsmall',
'type' => 'text_small'
),
Medium text field. Example:
array(
'name' => 'Test Text Medium',
'desc' => 'field description (optional)',
'default' => 'standard value (optional)',
'id' => $prefix . 'test_textmedium',
'type' => 'text_medium'
),
Standard text field which enforces an email address. Example:
array(
'name' => 'Test Text Email',
'id' => $prefix . 'email',
'type' => 'text_email',
),
Standard text field which enforces a url. Example:
array(
'name' => __( 'Website URL', 'cmb2' ),
'id' => $prefix . 'facebookurl',
'type' => 'text_url',
// 'protocols' => array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet' ), // Array of allowed protocols
),
Standard text field with dollar sign in front of it (useful to prevent users from adding a dollar sign to input). Example:
array(
'name' => 'Test Money',
'desc' => 'field description (optional)',
'id' => $prefix . 'test_textmoney',
'type' => 'text_money',
// 'before' => '£', // Replaces default '$'
),
Standard textarea. Example:
array(
'name' => 'Test Text Area',
'desc' => 'field description (optional)',
'default' => 'standard value (optional)',
'id' => $prefix . 'test_textarea',
'type' => 'textarea'
),
Smaller textarea. Example:
array(
'name' => 'Test Text Area Small',
'desc' => 'field description (optional)',
'default' => 'standard value (optional)',
'id' => $prefix . 'test_textareasmall',
'type' => 'textarea_small'
),
Code textarea. Example:
array(
'name' => 'Test Text Area Code',
'desc' => 'field description (optional)',
'default' => 'standard value (optional)',
'id' => $prefix . 'test_textareacode',
'type' => 'textarea_code'
),
Date field. Stored in m/d/Y format (ex: 09/01/2011). Example:
array(
'name' => 'Test Date Picker',
'desc' => 'field description (optional)',
'id' => $prefix . 'test_textdate',
'type' => 'text_date'
),
Time picker field. Example:
array(
'name' => 'Test Date Picker',
'id' => $prefix . 'test_texttime',
'type' => 'text_time'
// 'time_format' => 'h:i:s A',
),
-
time_format
, defaults to 'h:i A'. See php.net/manual/en/function.date.php.
Timezone field. Example:
array(
'name' => 'Time zone',
'id' => $prefix . 'timezone',
'type' => 'select_timezone',
),
Date field, stored as UNIX timestamp. Useful if you plan to query based on it (ex: events listing ). Example:
array(
'name' => 'Test Date Picker (UNIX timestamp)',
'id' => $prefix . 'test_textdate_timestamp',
'type' => 'text_date_timestamp',
// 'timezone_meta_key' => $prefix . 'timezone',
// 'date_format' => 'l jS \of F Y',
),
-
timezone_meta_key
, Optionally make this field honor the timezone selected in theselect_timezone
field specified above. -
date_format
, defaults to 'm/d/Y'. See php.net/manual/en/function.date.php.
Date and time field, stored as UNIX timestamp. Example:
array(
'name' => 'Test Date/Time Picker Combo (UNIX timestamp)',
'id' => $prefix . 'test_datetime_timestamp',
'type' => 'text_datetime_timestamp',
),
Date, time and timezone field, stored as UNIX timestamp. Example:
array(
'name' => 'Test Date/Time Picker/Time zone Combo (serialized DateTime object)',
'id' => $prefix . 'test_datetime_timestamp_timezone',
'type' => 'text_datetime_timestamp_timezone',
),
A colorpicker field. Example:
array(
'name' => 'Test Color Picker',
'id' => $prefix . 'test_colorpicker',
'type' => 'colorpicker',
'default' => '#ffffff',
'repeatable' => true,
),
Standard radio buttons. Example:
array(
'name' => 'Test Radio',
'id' => $prefix . 'test_radio',
'type' => 'radio',
'options' => array(
'standard' => __( 'Option One', 'cmb2' ),
'custom' => __( 'Option Two', 'cmb2' ),
'none' => __( 'Option Three', 'cmb2' ),
),
),
Inline radio buttons. Example:
array(
'name' => 'Test Radio inline',
'id' => $prefix . 'test_radio_inline',
'type' => 'radio_inline',
'options' => array(
'standard' => __( 'Option One', 'cmb2' ),
'custom' => __( 'Option Two', 'cmb2' ),
'none' => __( 'Option Three', 'cmb2' ),
),
),
Radio buttons pre-populated with taxonomy terms. Example:
array(
'name' => 'Test Taxonomy Radio',
'desc' => 'Description Goes Here',
'id' => $prefix . 'text_taxonomy_radio',
'taxonomy' => '', //Enter Taxonomy Slug
'type' => 'taxonomy_radio',
),
Inline radio buttons pre-populated with taxonomy terms.
Standard select dropdown. Example:
array(
'name' => 'Test Select',
'desc' => 'Select an option',
'id' => $prefix . 'test_select',
'type' => 'select',
'options' => array(
'standard' => __( 'Option One', 'cmb2' ),
'custom' => __( 'Option Two', 'cmb2' ),
'none' => __( 'Option Three', 'cmb2' ),
),
'default' => 'custom',
),
A select field pre-populated with taxonomy terms. Example:
array(
'name' => 'Test Taxonomy Select',
'desc' => 'Description Goes Here',
'id' => $prefix . 'text_taxonomy_select',
'taxonomy' => 'category', //Enter Taxonomy Slug
'type' => 'taxonomy_select',
),
Standard checkbox. Example:
array(
'name' => 'Test Checkbox',
'desc' => 'field description (optional)',
'id' => $prefix . 'test_checkbox',
'type' => 'checkbox'
),
A field with multiple checkboxes (and multiple can be selected). Example:
array(
'name' => 'Test Multi Checkbox',
'desc' => 'field description (optional)',
'id' => $prefix . 'test_multicheckbox',
'type' => 'multicheck',
'options' => array(
'check1' => 'Check One',
'check2' => 'Check Two',
'check3' => 'Check Three',
)
),
A field with checkboxes with taxonomy terms, and multiple terms can be selected
array(
'name' => 'Test Taxonomy Multicheck',
'desc' => 'Description Goes Here',
'id' => $prefix . 'text_taxonomy_multicheck',
'taxonomy' => '', //Enter Taxonomy Slug
'type' => 'taxonomy_multicheck',
),
Inline checkboxes with taxonomy terms.
A metabox with TinyMCE editor (same as WordPress' visual editor). Example:
array(
'name' => 'Test wysiwyg',
'desc' => 'field description (optional)',
'id' => $prefix . 'test_wysiwyg',
'type' => 'wysiwyg',
'options' => array(),
),
Note: Text added in a wysiwyg field will not have paragraph tags automatically added, the same is true of standard WordPress post content editing with the WYSIWYG. When outputting formatted text, wrap your get_post_meta() call with wpautop to generate the paragraph tags.
echo wpautop( get_post_meta( get_the_ID(), $prefix . 'test_wysiwyg', true ) );
The options array allows you to customize the settings of the wysiwyg. Here's an example with all the options:
array(
'name' => 'Test wysiwyg',
'desc' => 'field description (optional)',
'id' => $prefix . 'test_wysiwyg',
'type' => 'wysiwyg',
'options' => array(
'wpautop' => true, // use wpautop?
'media_buttons' => true, // show insert/upload button(s)
'textarea_name' => $editor_id, // set the textarea name to something different, square brackets [] can be used here
'textarea_rows' => get_option('default_post_edit_rows', 10), // rows="..."
'tabindex' => '',
'editor_css' => '', // intended for extra styles for both visual and HTML editors buttons, needs to include the `<style>` tags, can use "scoped".
'editor_class' => '', // add extra class(es) to the editor textarea
'teeny' => false, // output the minimal editor config used in Press This
'dfw' => false, // replace the default fullscreen with DFW (needs specific css)
'tinymce' => true, // load TinyMCE, can be used to pass settings directly to TinyMCE using an array()
'quicktags' => true // load Quicktags, can be used to pass settings directly to Quicktags using an array()
),
),
A file uploader. By default it will store the file url and allow either attachments or URLs. This field type will also store the attachment ID (useful for getting different image sizes). It will store it in $id . '_id'
, so if your field id is test_image
the ID is stored in test_image_id
. You can also limit it to only allowing attachments (can't manually type in a URL), which is also useful if you plan to use the attachment ID. The example shows its default values, with possible values commented inline. Example:
array(
'name' => 'Test File',
'desc' => 'Upload an image or enter an URL.',
'id' => $prefix . 'test_image',
'type' => 'file',
'allow' => array( 'url', 'attachment' ) // limit to just attachments with array( 'attachment' )
),
Example using the test_image_id
to retrieve a medium image:
$image = wp_get_attachment_image( get_post_meta( get_the_ID(), 'test_image_id', 1 ), 'medium' );
A file uploader that allows you to add as many files as you want. This is a repeatable field, and will store its data in an array. Example:
array(
'name' => 'Test File List',
'desc' => '',
'id' => $prefix . 'file_list',
'type' => 'file_list',
// 'preview_size' => array( 100, 100 ), // Default: array( 50, 50 )
),
调用显示方法:
php $images = get_post_meta($post->ID, 'wpyou_test_file_list', true); // 获取图片数组
if(!empty($images)) foreach($images as $img) :
-
preview_size
Changes the size of the preview images in the field. Default: array( 50, 50 ).
Displays embedded media inline using WordPress' built-in oEmbed support. See codex.wordpress.org/Embeds for more info and for a list of embed services supported. (added in 0.9.1)
array(
'name' => 'oEmbed',
'desc' => 'Enter a youtube, twitter, or instagram URL. Supports services listed at <a href="http://codex.wordpress.org/Embeds">http://codex.wordpress.org/Embeds</a>.',
'id' => $prefix . 'test_embed',
'type' => 'oembed',
),
Note: Text added in a oembed
field will not automatically display the embed in your theme. To generate the embed in your theme, this is a method you could use:
$url = esc_html( cmb2_get_option( 'cmb2_options', 'video_url_option_id' ) );
echo wp_oembed_get( $url );
Hybrid field that supports adding other fields as a repeatable group. Example:
array(
'id' => $prefix . 'repeat_group',
'type' => 'group',
'description' => __( 'Generates reusable form entries', 'cmb2' ),
'options' => array(
'group_title' => __( 'Entry {#}', 'cmb2' ), // since version 1.1.4, {#} gets replaced by row number
'add_button' => __( 'Add Another Entry', 'cmb2' ),
'remove_button' => __( 'Remove Entry', 'cmb2' ),
'sortable' => true, // beta
),
// Fields array works the same, except id's only need to be unique for this group. Prefix is not needed.
'fields' => array(
array(
'name' => 'Entry Title',
'id' => 'title',
'type' => 'text',
// 'repeatable' => true, // Repeatable fields are supported w/in repeatable groups (for most types)
),
array(
'name' => 'Description',
'description' => 'Write a short description for this entry',
'id' => 'description',
'type' => 'textarea_small',
),
array(
'name' => 'Entry Image',
'id' => 'image',
'type' => 'file',
),
array(
'name' => 'Image Caption',
'id' => 'image_caption',
'type' => 'text',
),
),
),
All repeatable group entries will be saved as an array to that meta-key. Example usage to pull data back:
$entries = get_post_meta( get_the_ID(), $prefix . 'repeat_group', true );
foreach ( (array) $entries as $key => $entry ) {
$img = $title = $desc = $caption = '';
if ( isset( $entry['title'] ) )
$title = esc_html( $entry['title'] );
if ( isset( $entry['description'] ) )
$desc = wpautop( $entry['description'] );
if ( isset( $entry['image_id'] ) ) {
$img = wp_get_attachment_image( $entry['image_id'], 'share-pick', null, array(
'class' => 'thumb',
) );
}
$caption = isset( $entry['image_caption'] ) ? wpautop( $entry['image_caption'] ) : '';
// Do something with the data
}
You can define your own field types as well.
Most (if not all) fields support these parameters:
-
name
: The field label -
desc
: Field description. Usually under or adjacent to the field input. -
id
: The data key. If using for posts, will be the post-meta key. If using for an options page, will be the array key. -
type
: What makes the whole thing work. -
repeatable
: Supported by most, and will make the individual field a repeatable one. -
default
: Specify a default value for the field. -
show_names
: Hide label for the field. -
options
: For fields that take an options array. These include:select
,radio
,multicheck
,wysiwyg
andgroup
. -
before
andafter
: These allow you to add arbitrary text/markup before and after the field just inside thetd
tag. -
on_front
: If you're planning on using your metabox fields on the front-end as well (user-facing), then you can specify that certain fields do not get displayed there by setting this parameter tofalse
. -
attributes
: Will modify default attributes (class, input type, rows, etc), or add your own (placeholder, data attributes). Example:array( 'name' => 'Extra Small Textarea', 'id' => $prefix .'xtra_small_textarea', 'type' => 'textarea_small', 'attributes' => array( 'placeholder' => 'A small amount of text', 'rows' => 3, 'required' => 'required', ), ),
-
show_on_cb
: (since version 1.1.4) A callback to conditionally display a field. Callback funciton should return a boolean (true/false) value. Function passes in the current field object. Example:array( 'name' => __( 'Test Text', 'cmb2' ), 'id' => $prefix . 'test_text', 'type' => 'text', 'show_on_cb' => 'cmb2_only_show_for_user_1', // function should return a bool value ), ... /** * Only display a field if the current user is 1 * @param object $field Current field object * @return bool True if current user's ID is 1 */ function cmb2_only_show_for_user_1( $field ) { // Returns true if current user's ID is 1, else false return 1 === get_current_user_id(); }
-
escape_cb
: Bypass the cmb2 escaping (escapes before display) methods with your own callback. Set tofalse
if you do not want any escaping (not recommended). -
sanitization_cb
: Bypass the cmb2 sanitization (sanitizes before saving) methods with your own callback. Set tofalse
if you do not want any sanitization (not recommended).