@hamworks/wp-data
v0.0.9
Published
## Installation
Downloads
8
Keywords
Readme
@hamworks/wp-data
Installation
Install the module
npm install @hamworks/wp-data --save
API
useMeta
React hooks for post meta.
Parameters
- key
string
: The post meta key.
Returns
[
any
,Function
]any
: A post meta value.Function
: Update function for meta value.
Examples
jsx
import { TextControl } from '@wordpress/components';
import { useMeta } from '@hamworks/wp-data';
const FooControl = () => {
const [ foo, setFoo ] = useMeta( 'foo' );
return <TextControl label="Foo" type={ 'text' } onChange={ setFoo } value={ foo } />;
};
tsx
import { TextControl } from '@wordpress/components';
import { useMeta } from '@hamworks/wp-data';
const FooControl = () => {
const [ foo, setFoo ] = useMeta<string>( 'foo' );
return <TextControl label="Foo" type={ 'text' } onChange={ setFoo } value={ foo } />;
};