Title: Default post content
Last modified: March 8, 2023

---

# Default post content

 *  Resolved [Radical Dreamer](https://wordpress.org/support/users/avagp/)
 * (@avagp)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/default-post-content-3/)
 * There is a way i can define a default content for every post?
 * I’ve tried this filter by wordpress, but it is not working:
 *     ```wp-block-code
       add_filter( 'default_content', 'my_editor_content' );
       function my_editor_content( $content ) {
           $content = "My default content.";
           return $content;
       }
       ```
   
 * Is there a filter for this plugin or a way to configure it on the form edit settings?
 * Thanks!!

Viewing 1 replies (of 1 total)

 *  Plugin Author [aharonyan](https://wordpress.org/support/users/aharonyan/)
 * (@aharonyan)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/default-post-content-3/#post-16557682)
 * From new version 3.7.0 you can use this filter `fus_editor_js_default_content`
 * Example:
 *     ```wp-block-code
       add_filter('fus_editor_js_default_content', function ($default_content) {
   
       $default_content = [
   
       'time' => time(),
   
       'blocks' => [
   
       [
   
       'type' => 'paragraph',
   
       'data' => [
   
       'text' => __('Default Content', FE_TEXT_DOMAIN),
   
       ],
   
       ]
   
       ]
   
       ];
   
       return $default_content;
   
       });
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Default post content’ is closed to new replies.

 * ![](https://ps.w.org/front-editor/assets/icon.svg?rev=3208048)
 * [Guest posting / Frontend Posting / Front Editor – WP Front User Submit](https://wordpress.org/plugins/front-editor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/front-editor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/front-editor/)
 * [Active Topics](https://wordpress.org/support/plugin/front-editor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/front-editor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/front-editor/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [aharonyan](https://wordpress.org/support/users/aharonyan/)
 * Last activity: [3 years, 2 months ago](https://wordpress.org/support/topic/default-post-content-3/#post-16557682)
 * Status: resolved