diff --git a/packages/block-library/src/post-content/edit.js b/packages/block-library/src/post-content/edit.js index 041a3b4fa02f6..ca8e143ca2772 100644 --- a/packages/block-library/src/post-content/edit.js +++ b/packages/block-library/src/post-content/edit.js @@ -15,6 +15,8 @@ import { store as coreStore, } from '@wordpress/core-data'; import { useSelect } from '@wordpress/data'; +import { Placeholder } from '@wordpress/components'; + /** * Internal dependencies */ @@ -104,25 +106,18 @@ function Content( props ) { ); } -function Placeholder( { layoutClassNames } ) { +function PostContentPlaceholder( { layoutClassNames } ) { const blockProps = useBlockProps( { className: layoutClassNames } ); return (
- { __( - 'This is the Content block, it will display all the blocks in any single post or page.' - ) } -
-- { __( - 'That might be a simple arrangement like consecutive paragraphs in a blog post, or a more elaborate composition that includes image galleries, videos, tables, columns, and any other block types.' - ) } -
-- { __( - 'If there are any Custom Post Types registered at your site, the Content block can display the contents of those entries as well.' - ) } -
++ { __( 'This block will be replaced with your content.' ) } +
+