@wordpress/block-library
Version:
Block library for the WordPress editor.
24 lines (21 loc) • 598 B
JavaScript
import { SelectControl } from '@wordpress/components';
import { __ } from '@wordpress/i18n';
const stickyOptions = [
{ label: __( 'Include' ), value: '' },
{ label: __( 'Ignore' ), value: 'ignore' },
{ label: __( 'Exclude' ), value: 'exclude' },
{ label: __( 'Only' ), value: 'only' },
];
export default function StickyControl( { value, onChange } ) {
return (
<SelectControl
label={ __( 'Sticky posts' ) }
options={ stickyOptions }
value={ value }
onChange={ onChange }
help={ __(
'Sticky posts always appear first, regardless of their publish date.'
) }
/>
);
}