There is no way to add “placeholder” for TinyMCE, but you can set default content for newly created posts. All you need is just to hook default_content
filter and return your formatted paragraphs:
add_filter( 'default_content', 'wpse8170_get_default_instructions', 10, 2 );
function wpse8170_get_default_instructions( $content, WP_Post $post ) {
if ( $post->post_type == 'post' ) {
$content=".... your content ....";
}
return $content;
}
Related Posts:
- Visual editor issue by having multiple tiny mce editors in a CPT
- Enable Gutenberg on custom post type
- Custom Post Types: How-to get rid of editor (-meta box)
- Front end post editing using a form
- Hide “Add media”, HTML editor from TinyMCE
- Numbering sections and block-level elements in wpautop(); WordPress as CMS for long-form writing;
- How to add button to post page WordPress 5.x
- Remove tinyMCE from admin and replace with textarea
- Using multiple instances of wp_editor in Custom Post Type admin area
- Excluding post type from WordPress link builder
- Editor access to menu: custom post type missing
- WordPress Rest API only returns content when posttype has editor capability
- Add TinyMCE to CPT metaboxes in 3.1?
- Multiple TinyMCE editors in dynamically generated textareas
- Show image gallery from a custom field
- How to use TinyMCE Editor for one of my custom post meta field?
- TinyMCE style formats for different post types
- Is it possible to activate customfield ‘text description’ upon activating the customfield ‘checkbox’?
- Target post type edit page to change view post button, how do I?
- How can I set the height of the classic editor per post-type?
- Show all tags on custom post type
- Custom post type editor uses old tinyMCE
- Editor / Add Media: Is it possible to only allow galleries?
- wysiwyg editor don´t export paragraph
- Capabilities not working with custom post type
- Adding custom post formatting options in custom post types
- Function to add custom HTML into head in custom post-type list page
- How to save TinyMCE fields on WordPress custom post type?
- How to fix the Post Preview Button (CPT & map_meta_cap)
- How do I disable the built-in editor and automatically configure the properties of new pages?
- wp_editor in custom post type is not saving formatted text like bold, italic etc
- Editor role isn’t seeing specific post type posts with only post_type parameter
- How to hide editor, but keep media library access
- Multiple Block Quotes without using HTML
- Show posts of parent in edit.php
- Adding custom shortcode to page leads to page without styling
- Issue displaying multiple TinyMCE editors with WPAlchemy
- Making custom post type visible for only logged in users
- Multiple post types – share same ReWrite slug?
- How do you create an archive for a custom post type from a plugin?
- Listing Pages With Checkboxes In a Metabox (and saving them)
- Retrieving values of custom fields in Quick Edit mode
- Force unique page slugs across all post types
- posts_nav_link on single post template
- WP_Query post at custom position
- wrong template for page of archive
- Exclude the parent custom post-type posts only
- Posts created in a Custom Post Type are lost if published without a title
- 2nd button row from WP Super Edit or TinyMCE Advanced doesn’t show to 2nd admin
- Limit users by custom taxonomy and user roles
- Add meta value to custom post type on publish
- making available just some parts of theme option
- Display not found page 404 on specific Post Type
- Allow Editor to view/modify a custom post type
- Assign External Database Queries to Global Variables and Make Them Accessible
- Custom post type permalink tag 404
- WordPress custom taxonomy template not working
- Can a shortcode included in post content add styles to the ?
- Category.php template for custom posts
- help
- Custom post doesn’t show featured image
- Create field of Custom Post Types
- How can I add a shortcode to query Custom Post Type with ACF in WordPress?
- ACF for custom post type archive pages: which hook to use?
- Pagination hitting 404 page on /page/4
- Custom Meta Box returns no HTML
- Save Metabox Custom Field Value
- Multiple Loops on a Page Without Duplicates
- Get the latest comment from a custom post type where depth = 1?
- Custom Meta Box with variable number of fields
- Specifying a template for custom post type pages
- build Custom post type and make it child for Posts and put it as comment
- Creating archive like functionality through birectional relationships
- Display another page / custom post type as home page
- Action on Custom Post publish
- Post template not applying on theme (potentially rendering as Page template)
- $_POST from a Meta Box
- Permalinks: custom post type -> custom taxonomy -> custom sub taxonomy -> post
- posts_per_page is not working by term
- How to store additional data that is related to core data
- % encoded URL giving 404 error in WordPress
- Multi Photo Upload with Caption on Front End for Custom Post Type
- Group based routing and administration
- Why does my plugin require a permalink reset after a new installation?
- Limit Number of Custom Post Type Dashboard
- Reference field of users in custom post type
- Avoid another meta box in my custom post type
- Not Able to Get Custom Post Type in Single and Single-custom-post-type
- Multiple post types or single post type with category taxonomy?
- custom post type and taxonomy URL
- Hook only specific post type
- Ordering by multiple meta keys – Custom post type
- Storing postID in session variable to query database when visitor on custom template page
- Create a Page Templete to Display Table Of Content for Custom Taxonomies
- send user to first page of results when reposting to page?
- Create option for custom posts types
- How to create a job post by email parsing? [closed]
- Filtering custom post types using category taxonomy
- How to use wp_set_object_terms depending on page ID?
- Change CPT Edit Target Link for Admin List