Text

TwebMetaTextControl

{ label, help, type, metaKey* }
/**
 * @param {string} [label] - Component label.
 * @param {string} [help] - Component description.
 * @param {string} [type] - Input type: text, email, url, number, date.
 * @param {string} metaKey - Registered meta key from register_post_meta().
 */
functions.php
register_post_meta( 'post_type_name', 'test_text', array(
	'type'         => 'string',
	'default'      => '',
	'single'       => true,
	'show_in_rest' => true,
) );
index.js
import {
	TwebMetaTextControl,
} from '@tigriweb/components/meta';
index.js | PanelBody
<TwebMetaTextControl
	label={ __('Text Label', 'your-theme-name') }
	help={ __('Text Description', 'your-theme-name') }
	metaKey="test_text"
/>

Last updated

Was this helpful?