Untitled

 avatar
unknown
plain_text
21 days ago
533 B
4
Indexable
<PanelRow>
	{postOne && postOne.id && (
		<>
			<label>{__('Custom Article Title', 'blackstone')}</label>
			<RichText
				className="components-text-control__input bx-vertical-list__input"
				placeholder={__('Enter custom article title', 'blackstone')}
				multiline={false}
				value={customTitleOne}
				onChange={(customTitleOne) => {
					setAttributes({ customTitleOne });
				}}
			/>
			<p className="help">{__('Optional text that will override the title of this selected article.', 'blackstone')}</p>
		</>
	)}
</PanelRow>
Leave a Comment