Skip to content

Commit

Permalink
Update post content placeholder (#40177)
Browse files Browse the repository at this point in the history
* Updated post content placeholder

* Update the paragraphs
  • Loading branch information
carolinan committed Apr 29, 2022
1 parent dd7db32 commit 1f695c9
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion packages/block-library/src/post-content/edit.js
Expand Up @@ -85,7 +85,21 @@ function Placeholder() {
const blockProps = useBlockProps();
return (
<div { ...blockProps }>
<p>{ __( 'Post Content' ) }</p>
<p>
{ __(
'This is the Post Content block, it will display all the blocks in any single post or page.'
) }
</p>
<p>
{ __(
'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.'
) }
</p>
<p>
{ __(
'If there are any Custom Post Types registered at your site, the Post Content block can display the contents of those entries as well.'
) }
</p>
</div>
);
}
Expand Down

0 comments on commit 1f695c9

Please sign in to comment.