Results 1 to 4 of 4

Thread: Wordpress saved copies of post

  1. #1
    Join Date
    May 2009
    Posts
    24

    Wordpress saved copies of post

    I am a frequent user of Wordpress. I used this site to publish my blog. Whenever i publish a blog wordpress saves a copy of post. I am quiet aware of post/page revision management service of Wordpress. I want to know more about the post/page revision management service. Can it save copy of text which i can use for a revision. And also how to enable and disable the auto save function along with the post feature also.

  2. #2
    Join Date
    Oct 2005
    Posts
    2,358

    Re: Wordpress saved copies of post

    Post or Page revision management is one of the latest feature of Wordpress. This is good for multi-author blog. It enables to see the author what was changed in a post, by whom and when. You can limit the level of revision management. So you will have a small amount of revision. Add the below code to limit the size of post. You will have to edit your wp-config.php file. I suggest that you keep a back of your file. Add the below code - define('WP_POST_REVISIONS',6); in <?php and closing ?>.
    Eg : -
    PHP Code:
    <?php
    >>WP config file
    /* DISABLE POST REVISIONS */
    define('WP_POST_REVISIONS',false);
    ?>

  3. #3
    Join Date
    May 2008
    Posts
    2,134

    Re: Wordpress saved copies of post

    The post/page revision management system just tracks the changes in your post and keeps a copy of previous version of your blog. So that you can revert back if you want. Auto-save just saves your post periodically in order to avoid loss of data. It over writes the old revision automatically. So if your are thinking that the size of your blog will increase due to the auto save feature then it not correct. You can delay the time of auto-save by a minute. Give the following code to your wp-config.php file : define('AUTOSAVE_INTERVAL',600); . It is a useful utility.

  4. #4
    Join Date
    May 2008
    Posts
    2,792

    Re: Wordpress saved copies of post

    Here I am having something for your. If you wish to delete excess post message saved then you can do this. Always make a backup of your file before editing.
    Open your phpMyAdmin panel and log in.
    Select the SQL tab. A SQL Query box will appear.
    Copy/paste or type the below query.
    PHP Code:
    DELETE a,b,c FROM wp_posts a LEFT JOIN wp_term_relationships b ON (a.ID=b.object_idLEFT JOIN wp_postmeta c ON (a.ID=c.post_idWHERE a.post_type='revision'

Similar Threads

  1. Replies: 1
    Last Post: 26-01-2012, 12:27 AM
  2. How many post are allowed to post on a blog in a single day
    By umaymah in forum Technology & Internet
    Replies: 3
    Last Post: 16-01-2011, 06:11 AM
  3. Replies: 3
    Last Post: 28-09-2009, 02:54 PM
  4. Wordpress plugin " paypal post"
    By NICKAN in forum Software Development
    Replies: 3
    Last Post: 25-08-2009, 12:49 PM
  5. what is wordpress? How to install Newer versions of wordpress.
    By Gill_christ in forum Technology & Internet
    Replies: 3
    Last Post: 21-05-2009, 02:40 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,136,790.77786 seconds with 16 queries