@wordpress/editor
Version:
Enhanced block editor for WordPress posts.
18 lines • 488 B
JavaScript
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
export const visibilityOptions = [{
value: 'public',
label: __('Public'),
info: __('Visible to everyone.')
}, {
value: 'private',
label: __('Private'),
info: __('Only visible to site admins and editors.')
}, {
value: 'password',
label: __('Password Protected'),
info: __('Protected with a password you choose. Only those with the password can view this post.')
}];
//# sourceMappingURL=utils.js.map