Title: Pull the Default Post &#8220;Content&#8221;
Last modified: April 21, 2020

---

# Pull the Default Post “Content”

 *  [ND](https://wordpress.org/support/users/nigeltduke2/)
 * (@nigeltduke2)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/pull-the-default-post-content-2/)
 * Hello. Is there a a way for me to make Frontier pull my theme’s default post 
   Title and body(content) whenever I start a new post? For example, my site is 
   currently set to have some default text in the body and title of the post whenever
   I click the “New Post” in WP-Admin Dashboard. Whenever I click that, the new 
   post starts with prefilled text in body and title.
 * I noticed with Frontier, it does not pick that up so I am guessing Frontier is
   using it’s own template.
 * Just wondering how I either
 * 1. set frontier to have default text with the template it currently uses
 * or
 * 2. make it pull my theme’s default post title and body contents…
 * Either of these would work for me.
 * Thanks,

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [finnj](https://wordpress.org/support/users/finnj/)
 * (@finnj)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/pull-the-default-post-content-2/#post-12714012)
 * Hi,
 * Not at the moment, but it is a fairly easy change that I will apply to next release,
   as it could make sense to others.
 * It will mean that you will have to call a filter from your functions.php, to 
   add template content.
 * I will let you know here when I release it for test, expect in a week or so
 *  Thread Starter [ND](https://wordpress.org/support/users/nigeltduke2/)
 * (@nigeltduke2)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/pull-the-default-post-content-2/#post-12714258)
 * That sounds great finnj! Thank you very much for your support
 *  Plugin Author [finnj](https://wordpress.org/support/users/finnj/)
 * (@finnj)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/pull-the-default-post-content-2/#post-12724584)
 * Hi,
 * Now available to test in version 5.1.6 : [https://downloads.wordpress.org/plugin/frontier-post.5.1.6.zip](https://downloads.wordpress.org/plugin/frontier-post.5.1.6.zip)
 * Please let me know it works for you, and I will release it as the stable version
 * I have added an example of how to use in the extension demo plugin: [https://wpfrontier.com/frontier-post-extension-plugin/](https://wpfrontier.com/frontier-post-extension-plugin/)
 * You can insert the following in your functions.php:
 *     ```
       function fp_my_template_content($tmp_post , $fpost_sc_parms)
               {
               // $fpost_sc_parms holds short code parameters
   
               // set post content & title
               if ($tmp_post->post_content < " ")
                   $tmp_post->post_content = 'Replace this with your template post content and you are good to go';
   
               if ($tmp_post->post_title < " ")
                   $tmp_post->post_title = 'Replace this with your template post title';
   
   
               return $tmp_post;
               } 
   
               add_filter('frontier_post_prepare_post', 'fp_my_template_content',10,2);
       ```
   
    -  This reply was modified 6 years, 1 month ago by [finnj](https://wordpress.org/support/users/finnj/).

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Pull the Default Post “Content”’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/frontier-post_c8b8b0.svg)
 * [Frontier Post](https://wordpress.org/plugins/frontier-post/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/frontier-post/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/frontier-post/)
 * [Active Topics](https://wordpress.org/support/plugin/frontier-post/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/frontier-post/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/frontier-post/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [finnj](https://wordpress.org/support/users/finnj/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/pull-the-default-post-content-2/#post-12724584)
 * Status: not resolved