我可以通过以下步骤到达那里。
import * as wpDate from "@wordpress/date";
您可以在此处找到非常有限的文档:
https://developer.wordpress.org/block-editor/reference-guides/packages/packages-date/我能够使用以下内容:
const post = wp.data.select("core/editor").getCurrentPost();
const postDate = wpDate.format("d|m|Y", post.date);
然后,当我需要它时:
<div>
<RichText
className="snug huge"
placeholder="Your title here"
onChange={(content) => setAttributes({ title: content })}
value={attributes.title}
tagName="h1"
/>
<p>{postDate}</p>
</div>