Skip to content


Revision Control

One of the major features of WordPress 2.6 is Revisions; Revisions are a powerful feature for anyone who likes to keep a track of a page/post’s modifications, But they’re not for everybody.

There has been quite a bit of complaining that WordPress does not include a option to disable Revisions via the admin interface, and instead relied on a wp-config.php constant being defined. This plugin is designed to allow Configuring this option via the WordPress admin panel, And to set it on a per-post/page basis.

Version 1.1 seperates the global options into Posts and Pages, You may choose to globally disable revisions for Posts, yet leave them enabled for pages, or vice versa.

MU Compatibility: No, This is not MU Compatible – Well, At least I dont think it is, I have not written it for MU and do not understand the differences between WP and WPMU with respect to plugins. I might look into it for the next version if there are enough requests for MU Compat.

Eg. I might Disable Revisions Globally on my blog, I will now only have the Live version, and the Autosave. However, I might decide i want to Revision this page, So i just change the revision option to Enabled, Revisions are now only enabled for this page, nothing else. I could also optionally tell it to only save 3 revisions for this page.

Screenshots:

Links:

WordPress.org Plugin directory / Download: http://wordpress.org/extend/plugins/revision-control/

Known Issues:

  1. Disabling Post revisions on a post Deletes all revisions for that post, However, Disabling globally does not delete current Revisions.
  2. Selected option does not stick, Or appears to stick to a non-selected value. Finally Fixed in 1.5

116 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.

  1. Roy says

    When I check “disable”, leave the “revision” screen and come back to it, there is no longer any option checked! For the rest: thanks a lot for this plugin, especially the number setting option.

  2. Roy says

    I just noticed that the disable function not only looses its checkbox, but it also doesn’t work. I CAN disable revisions per post, but I just noticed that I had revisions for posts I edited after installing your plugin and set things to disable.

  3. Will says

    Seems to be funny for me also. I set it globally to two revisions for both pages ans posts. But on the edit post or page screens, it still has revisions “enabled”. Even if I change the radio tick to “limit to (2) revisions on a particular post, after I save the post or page the next time the radio tick is changed back to enable.

  4. Will says

    Tut to further complicate matters, even though the radio won’t stick, the list of revisions shown is only two. Also, and this is really weird, the time of the revisions is off by two hours from the blog’s time and the last edited time that is shown up above in the WP save box.

  5. baron says

    hi. Thanks for plugin

    perfect.

    Regards

  6. Stephen says

    Thanks for the plugin and it’s working perfectly so far. Mahalo.

  7. davepoobond says

    The plugin works for the most part, but occasionally a revision is still made. In between posting 2 posts, I had to go back and edit another post. When I made a new post, a number was skipped.

    When I typed in the number that was skipped, it led me to a revision page for an Autosave revision.

  8. mocona says

    I’m wondering, could you give a feature to automatically delete all revision several days after the last edit? i think it would be a great benefit…

    • DD32 says

      Thats a good idea actually, Not that it’ll be useful to me.. I might look into it and may possibly release it as a seperate plugin instead.

  9. sohbet says

    Thanks!

  10. Predrag Supurovic says

    Man, thank you very much for this plugin. It saved me. I already thought I have to give up Wordpress and switch to another blogging tool.

    Here is just one suggestion: within plugin configuration, add button to immediately activate revision prunning. Your plugin works, but one has to go and resave each article to activate pruning of old revisions.

  11. Abeon Tech says

    Great plugin.

    All the revisions have built up and are killing the load times :(
    Thanks for sharing it :)

  12. rap says

    activate pruning of old revisions

    • DD32 says

      Yes, Its planned for a future release to allow easy-access to pruning revisions created previously.

  13. Sushubh says

    thanks. i just came here to request to add a feature that would remove all previous revisions!

  14. codestyling says

    I read you plugins code and have some suggestions belong to safety and comming WP 2.7 too.
    1st of all, i like it very much. But some code lines seems not safe to me:

    $submenu['options-general.php'][17] =

    if entry 17 is been already used (WP or any other plugin) you would overwrite it! Could be better to store it like:

    $submenu['options-general.php'][] =

    at the end (as append) and sort it afterwards.

    Also WP 2.7 introduces complete management of boxes. That’s why i would suggest to replace the posts/page revision box by a more sophisticated box, that allows the delete of explicite revisions too. If you are interested, i will write the example and would send it to you. Please let me know (also mail possible), how you think about.

    • DD32 says

      Hi,
      I’m very aware of the $submenu constraints, 17 cannot be used by any plugins unless they specifically set it, Any that use the API will be appended to the end somewhere, 17 is used to insert ‘Revisions’ between 2 of the standard menu sections. (I follow trunk development very closely, and will notice any breakage)

      I have been rewriting it for 2.7 over the last few months, And will release a new version shortly after 2.7 is released (eventually)

  15. jimisaacs says

    Seriously one of the most useful plugins I’ve found.
    Thank you!

    Maybe wordpress can come to their senses and just incorporate it.

  16. wwwindi says

    When will revision control for 2.7 be ready? Looks like a very useful plugin for people like me who are always revising.

    • DD32 says

      I’ve had a few issues with the latest rewrite, so i’m going to package up a maintainence release of the current stable to work with 2.7 for people today.

      I’ll release 1.9 today, and 2.0 (rewrite) in the coming weeks.

  17. tbronson says

    I think the 1.9 version is broken.

    • DD32 says

      Sorry, Fixed in 1.9.1, Seems the WordPress.org plugin packager doesnt respect svn:externals…

  18. Sherwin Techico says

    Hmmm how long does WP.org take to update w/ the latest version usually? It seems I can’t even go to wp-admin. Should be good to delete /revision-control and extract latest correct in terms of updating it? Just double-checking. Thanks for the work.

  19. FabriceV says

    Hello,
    Problem: I am a writer, I absolutely want to keep some revisions. Because copyright, plagiarism, personal organisation, update of content… But I do not want to save all revisions.
    Context: There are two kinds of revisions. The historical-archive ones (long term backup version) and the writing revision (short term worked version)
    Currently: It is problematic and risky to manage the process entirely manually. It is also problematic to define a fixed number of revision because you can loose historical versions.
    Answer: Is it possible that your plugin allows to save specific versions (user’s action) while the fixed number does concern only the latter ones. I supposed that this imply that the plugin should conserve at last (e.g) 5 revisions from current date to start date (start date is the last long term save version). That means that user can have both a manual treatment of long term backup versionning, while automatic treatment of short term versionning.
    Regards.

    • DD32 says

      Interesting idea really.. So basically.. Save only 5 revisions per day for the last 7 days, save only 1 revision per day for all dates previous..

      • PolyWogg says

        Not sure if they already responded, but that sounds like a fantastic feature — essentially a “protect” this revision feature that would stop the pruning from deleting it. Alternatively you could think of it as a “sticky” feature too — keep this revision available.

        PolyWogg

  20. jack says

    Hello,

    I’m using the latest version now with WP2.7 and have one issue with it:

    It seems to be working ok, but in the past week I had two published posts with future dates which I decided later to edit a little more before they become actually visible for visitors on the published date. In both cases I get the message that there is a saved version of this post more recent (!) than the version I just opened, in my opninion the only (?) version.

    I’m using this plugin since a month or two and disabled all revisions (posts and pages).

    • DD32 says

      Pretty sure the Autosave functionality isnt touched by my plugin, Only the Revisions, I dont have any plans to disable the Autosave functionality however (And if it is currently disabling that functionality, I’ll be re-enabling it next time i touch the code)

  21. Solomon says

    This plugin is working perfectly with Wordpress 2.7 here. I find it so useful. Thank you very much for releasing it free of charge.

  22. Rap says

    Seriously one of the most useful plugins I’ve found.
    Thank you!

  23. PolyWogg says

    This one’s a bit odd, but maybe a known “feature”.

    FYI, my site is just getting going, so I’ve only got three posts, but autosaves and some tweaking as I get used to it had created six or seven revisions of a couple of my first posts. So this plugin was exactly what I was looking for — I was about to try and edit wp-config (shudder) as it was the only option I could find. (FYI, I hadn’t even thought I would need this until I peeked at my autobackup of my database and saw it was a LOT larger than it should have been for a couple of small posts, and found multiple copies of my post).

    So I installed the tool, set it to save 2 revisions only, went into my existing posts, and it was still showing the six or seven revisions from before. No problem, there’s a handy little delete tag you included. So I deleted them. Here’s the wonky bit — I got the following error message:

    Warning: Invalid argument supplied for foreach() in /mnt/w1003/d42/s31/b02cdf58/www/polywogg.ca/personal/wp-admin/includes/plugin.php on line 626

    Warning: Cannot modify header information – headers already sent by (output started at /mnt/w1003/d42/s31/b02cdf58/www/polywogg.ca/personal/wp-admin/includes/plugin.php:626) in /mnt/w1003/d42/s31/b02cdf58/www/polywogg.ca/personal/wp-includes/pluggable.php on line 850

    I have no idea what those two errors mean, but it *did* delete the revisions, just didn’t complete cleanly. But when I went back to the page, the one I deleted was gone. But each time I clicked delete on a revision, I got that error.

    I’m assuming future revisions will prune automatically, but just thought I would mention it. I’m using 2.7 and the latest version from the plug-in directory…

    Thanks again, and a happy new year to you!

    PW

    • DD32 says

      The plugin doesnt prune at all when activated.

      Once a new revision is created (ie. by clicking save) then it’ll prune revisions for the current post.

      As for the warning produced.. Thats an odd bug with the way WP handles the menu code.. Turns out, I’ve got a patch to submit to WordPress Trac to handle that.. I thought i’d worked around it in the latest version of the plugin though.. Apparently not.

  24. Techno Station says

    Hi,
    Great plugin. Shows clean posting page and you can delete manually a revision. One thing I could not figure out that either it removes only the entry at post page or it deletes all the related records (entries) from the database? Is there a way to undelete a revision ?

    • DD32 says

      Once you save a new revision of a post, If you’ve got it set to store x number of revisions, it’ll delete any older than that.

      Once a revision is deleted, Its gone, No way to get it back. Thats one of the nice things about the WordPress revision manager, you’ve got the full history at your fingertips :)

  25. Mark says

    Great plugin; I’ve had it installed from the beginning to keep all those revisions in check. Any chance that you would extend your plugin to bring flagged revisions to WordPress? (See this idea.)

    • DD32 says

      That sounds like it might fit in with the rewrite of the plugin which i have planned.. I just need some more motivation to get around to it :)

      I’ll add that idea to the list though, it seems like a pretty easy thing to implement.

  26. Matt says

    Hi,

    Once the plugin activated, I get an error when trying to load the options page. Is it a known issue ?

    • DD32 says

      No it is not, Whats the error message? (And how are you accessing the page? Through the plugins page, or the Admin menu?)

  27. Matt says

    The error message is a WordPress error : “Cannot load revision-control”. I clicked on the “revisions” link in the plugin page (URL : /wp-admin/options-general.php?page=revision-control). Is there another way to access the options page (other than through the plugin page) ?

    • DD32 says

      Hm, Must’ve changed the URL and forgotten to update it.. i’ll fix that up sometime soon :)

      However, You should find “Revisions” under Settings in the menu.

  28. john c says

    Thanks for your efforts, saved my load times… I had tons
    of old revisions…

    a global prune would be good for first time installers,
    I’ve got to go through each post and resave?

    thanks though.

    -j

  29. Yogajohn says

    Great plugin, thanks.

  30. Bazza says

    I also get error “cannot load revision control” there is no revision control option in the settings list.
    I have also loaded revision control to another blog at the same time without problem.
    Both blogs are 2.7 running revolution church theme on same host with similar plugins.
    Any Ideas?

    Thanks in advance

  31. jimisaacs says

    The last line in the plugin file, where you hook into the “init” action.
    This gives me problems on certain servers. $GLOBALS works fine on all servers, but on certain ones php craps out when I try to assign a function to a $GLOBALS variable, which is what this hook is doing.
    Isn’t there a more simple way to instantiate the plugin class? What is the reasoning behind this crazy method?
    This is one of the plugins I make sure to install on every WordPress, but I guess that also gave me some insight into this bug.

    • DD32 says

      Assigning to a $GLOBALS option is only needed since the class instance needs to be able to be referenced to from other locations, and on PHP4, AFAIK thats the simplest method.

      What configurations cause the problem? I’ve seen many plugins which use the same instancing code, infact, its written as a ‘must-do for plugins using classes’ somewhere..

      I’m somewhat wondering if its a PHP issue with something in the code rather than the globals part..

  32. webmaestro says

    I was going to ask if your ‘Revision Control’ still supported WP 2.6 (the description says it does, but in the sidebar it says: ‘Requires WordPress Version: 2.7 or higher’)

    Then I noticed Revision Control has not been tested for compatibility with WPMU. Are you planning to add do any testing with WPMU?

    How to Write Plugins for Wordpress MU:
    http://www.ringofblogs.com/2008/05/31/how-to-write-plugins-for-wordpress-mu-updated/

    Here’s some links to Codex information on WPMU:
    codex.wordpress.org/WordPressMU
    codex.wordpress.org/WPMU_Functions
    codex.wordpress.org/WPMU_Global_Variables

    If you need additional help, these folks are pretty responsive:

    http://mu.wordpress.org/forums/forum.php?id=10

    I hope this helps!

    • DD32 says

      My main hurdle with MU compatibility is installing MU in the first place, I always have problems (Which surprises everyone it seems)

      MU compatibility is planed in the future, Since WP 2.8/WPMU are making inroads in helping plugins work on either.. But it’ll happen at some stage.

      Also, You cant trust my Documentation. I simply never get around to writing it/updating it…

  33. mesonto says

    Any plans to make your plugin work with Wordpress v2.8? As of now I receive “internal service error” with your plugin enabled.

  34. Jason says

    I received a WordPress error saying that I don’t have permission to access the page when I clicked on the settings page and yet I am the blog administrator.

    • DD32 says

      An update has been released to address that issue in 1.9.2

    • Daniel says

      I’m also getting the error, that I don’t have permission to access the page although I’ve updated to v1.9.2.

  35. Marcelo says

    Hey, I’m using WP 2.8.1 and the latest release of this plugin and still getting the page with the warning telling me that I dont have permission to access the page when I clicked on the settings page and yet I am the blog administrator. What’s wrong?

    • DD32 says

      WordPress 2.8.1 introduces a new security enhancement to WP, 1.9.2 was untested (Flu and didnt have easy access to a server to test on), And WordPress.org seems to be misbehaving and not notifying people that 1.9.3 is available.. Hang in there.. it’ll get fixed sooner or later, If you cant live without the options page for a few days when who knows.. (Per-post options still work as expected)

      • Marcelo says

        Cool. v1.9.7 works fine on WP 2.8.1 now. Thanks!
        By the way, have you thought about adding a complementary function that allow an admin to definitely erase ALL the revisions in the database? I’ve moved one blog from a friend to my server and noticed that revisions may generate lots and lots of useless data in the db. And a plugin able to delete all that mess surely would rock ;)

  36. Otto says

    In your readme file, you have the changelogs in the reverse order. It’s supposed to be most recent version first, as shown here: http://westi.wordpress.com/2009/06/20/changelogs-changelogs-changelogs/

    This is causing an issue with various plugins (like Changelogger) that expect the most recent revision to be first, with the result that they can’t display your change information correctly.

  37. kiatlc says

    I use Windows Live Writer to post in WordPress2.8.2 and version 1.9.7 seems not working, still generate revision

    • DD32 says

      I never thought of external writers, And honestly dont know if it should work or not.

      I’ll consider testing that with the next major release in a few years.

  38. Felix Leong says

    Hello there, I’m having the same problem of WP telling me that I don’t have the permission to access the settings page. WP2.8.3 + Revision Control 1.9.7. Hope you could fix it soon ;)

  39. Tobias says

    Try this @ wp-config.php

    define(‘WP_POST_REVISIONS’, false);

    it’s the same as deactivating this via plugin ;)

  40. deko says

    Thanks for this patch for the lamest ‘feature’ ever released from WordPress. I just upgraded from 2.1 and can’t believe that WordPress has failed to provide an off button for Revisions since 2.6!! Revisions is the most ridiculous thing I have ever seen from WordPress. Is there no longer any adult supervision at WordPress?

    • DD32 says

      Revisions make perfect sense in the way in which they are used by WordPress. Revisions are designed to keep an audit log of who changes what, and when. Whilst many personal blogs will not need it, many will also find benefits from it in due course.

      The only arguments i have seen are either idiotic, or plain wrong. Post ID’s should never be relied upon (posts..pages..attachments…custom objects…etc..), and the extra data in the database is minimal (We’re talking a blog here, few hundred rows, with good indicies, Compare it against a “small” database to a DBA and we’re looking at a minuscule database..).


      To to future commenter’s: remember, Revisions are a feature that many people use, If it doesn’t suit you, then fine, theres many ways to turn it off, including this Plugin. But this is not the place to flame WordPress, Its developers, Or anyone who puts in time to support a product you are using, Please be nice, and realize you wouldn’t be using the project if it wasn’t for us. If you do not like what is happening to wordpress (Supporting the functionalities more people are using every day) then please fuck off, There are plenty of other projects which may suit you such as Drupal, or Joomla! or maybe even SmallBlogRunningProjectThatIsLightWeightButUses200MBOfMemory Pty Ltd’s product. Or of course, You can just contribute to WordPress yourself and shape the future of the product you choose to use….

  41. Tim Brown says

    there’s a small bug in the plugin where you check to see if the user has WP_POST_REVISIONS already defined in their wp-config.php with the intention of alerting them on the settings page if they have.

    Since you have a ‘return’ immediately after the check, your settings page is never hooked in if WP_POST_REVISIONS is already defined, so to the user it just looks like the plugin is doing nothing. I found out the hard way after just installing myself where I’ld previously been using the config file method.

  42. countmeon says

    ???????wordpress2.9????????????

    • DD32 says

      No idea what that says, but, No, Its untested with WordPress 2.9, and will remain so.

      New version will support 2.9+ which is currently in the works.

  43. DSmidgy says

    Hi,
    this may already be suggested: how about adding an option not to delete revisions but storing them in a different table. That one can be indexed differently and a such does not eat up such a large quantities of memory (for example Best related posts plug-in indexes “post_title” and “post_content”).
    Best regards, Dominik

  44. australian search engine optimization says

    Internet marketing and online advertising is now becoming increasingly popular and most effective in the field of advertising as it is the medium that involves a large number of users worldwide.

  45. rap indir says

    thank you ;)

  46. Toronto Web Designer says

    Thanks for this plugin. I always had to fully disable my revision in the wp-config.php file. Now I can enable it again. :)

  47. DD32 says

    Getting an environment that MU can install in isn’t my problem, Its keeping the configuration in working order afterwards, I always get it installed, and then the entire thing blows up in my face as soon as i try plugins/etc.

Continuing the Discussion

  1. blog://dd32.id.au/ » Blog Archive » Revision Control linked to this post on 23 July, 2008

    [...] Visit Plugin homepage for download & screenshots Tagged: revision-control, WordPress, Wordpress Plugins [...]

  2. Manage or disable revisions in Wordpress | Sniptools | Miscellaneous linked to this post on 23 July, 2008

    [...] You’ll find some Info ( & Download link) on it here: http://dd32.id.au/wordpress-plugins/revision-control/ [...]

  3. ?ー??れ??? » Revision Control linked to this post on 24 July, 2008

    [...] blog://dd32.id.au/ » Revision Control [...]

  4. sillybean » Revision Control for WP linked to this post on 25 July, 2008

    [...] Revision Control for WP — limits or disables the new revision feature in WordPress 2.6. 8:11 pm comment [...]

  5. Leonaut.com linked to this post on 26 July, 2008

    Revision Control…

    Revision Control is a plugin for WordPress 2.6+ which gives the user more control over the Post/Page Revisions, The Plugin allows for Revisions to be disabled on a per-post/page basis, Or disabled Globally and re-enabled on a per-post basis…

  6. How To Remove WordPress Post/Page Revisions | WordPress Geeks linked to this post on 1 August, 2008

    [...] If you are interested in a plugin that lets to selectively turn on and off the feature on a per post/page basis then check out this site. [...]

  7. Wordpress Plugins Rock! | Robert@PNG linked to this post on 13 August, 2008

    [...] Revision Control Allows for finer control of the Revision feature. [...]

  8. WordPress-Plug-In: Revision Control | blog@netplanet linked to this post on 14 August, 2008

    [...] Ob diese Funktionalität in einem Blog so notwendig ist, bleibt dahingestellt – ich brauche es nicht und würde gern darauf verzichten. Leider macht das WordPress-Team da auch wieder den Fehler, dass eine neu hinzugekommene Funktion, so sinnvoll sie auch sein mag, nicht direkt ausgeschaltet werden kann, so dass dazu wieder externe Hilfe erforderlich ist, auch hier wieder in Form eines kleinen Plug-In: Revision Control [...]

  9. 投稿リビジョン管理 - ねむりパンダのらくがき linked to this post on 20 August, 2008

    [...] Revision Control [...]

  10. Schusterjunge» Blogarchiv » Update auf WP 2.6.1 linked to this post on 3 September, 2008

    [...] der hier erklärt wird. Scheint aber auch nicht immer zu funktionieren. Eventuell hilft dieses Plugin weiter, oder auf 2.7 warten [...]

  11. WordPress - limit revisions in v.2.6 | doug munsinger linked to this post on 5 September, 2008

    [...] It allows you to limit the number of revisions WordPress 2.6.x will keep on hand. It was written by Dion Hulse, and it gives much more, well, revision [...]

  12. Le Weblog de Frederic Bezies » Archive du blog » Comment se débarrasser des révisions multiples dans Wordpress 2.6. linked to this post on 8 September, 2008

    [...] il existe une petite extension pour Wordpress qui s’appelle Revision Control et qui permet de gérer le nombre de révisions au cas par [...]

  13. Weblog von Hartmut und Marcella » Alles beim Alten V » Plugin, Wordpress, Artikel, Sekunden, Plugins, Revision, Lösung, ZapNewWindow linked to this post on 12 September, 2008

    [...] Viel einfacher geht es mit einem Plugin: Revision Control kann konkret administrativ für alle Artikel/Seiten eingestellt werden und trotzdem noch beim [...]

  14. Русский WordPress 2.6.1 Lecactus Edition - Lecactus Home linked to this post on 26 September, 2008

    [...] Revision Control – расширенное управление ревизиями записей и страниц [...]

  15. useful wordpress plugins | thinkoholic.com linked to this post on 20 March, 2009

    [...] control (plugin homepage helps the database loose weight by limiting the number of post revisions that are stored. [...]

  16. Cara Mematikan Post Revision Pada WordPress | RISOFTE linked to this post on 28 March, 2009

    [...] Revision Control | Download [...]

  17. Die Hit-Liste: WordPress das Magazin und mehr linked to this post on 4 April, 2009

    [...] Schutz Deiner Datenbank leg ich Dir dieses Plugin Revision Control [ Dion Hulse ]sehr ans [...]

  18. Wordpress Speed Tweaks and Hacks - 1 is A | 2 is B linked to this post on 27 May, 2009

    [...] Revision Control will help with load on your server while posting. The revisioning feature with wordpress is cool but I’ve found that it leads to more database bloat than it is worth. I turn it off and clear out the stored revisions using a sql query. [...]

  19. white» Blog Archive » 投稿リビジョンの設定をするwordpressプラグイン linked to this post on 7 June, 2009

    [...] Revision Control [...]

  20. Upgraded to Wordpress 2.8 “Baker” - The Digital Awakening linked to this post on 11 June, 2009

    [...] was that it added an entry into the database every time a post is edited. This was solved with the Revision Control plugin. I do edit my entries for grammatical, spelling and punctuation errors after publishing it. [...]

  21. wordpress plugins (20090611更新) | Life["Breathing"] linked to this post on 11 June, 2009

    [...] plugins Revision Control new 刪除或是限制每篇文章會備份的多版本文章 [...]

  22. 妄想的境界 » Blog Archive » 該死的自動備份 linked to this post on 23 June, 2009

    [...] 官網連結:http://dd32.id.au/wordpress-plugins/revision-control/ 中文安裝說明&語系檔:http://sofree.cc/revision-control/ [...]

  23. NIJITARO.COM » NIJITARO.COM 2009.06 linked to this post on 25 June, 2009

    [...] Revision Control [...]

  24. このブログに入れてるプラグイン一覧 | Space cowgirl linked to this post on 27 June, 2009

    [...] Revision Control 記事生成時に作られるキャッシュみたいなものを、いくつ作るか作るまいかを設定 [...]

  25. Recommended Wordpress Plugins – for every blog linked to this post on 4 August, 2009

    [...] clog up your database with too many versions of your posts and pages. It automatically does housekeeping on the numbers of revisions to keep. I typically set it up with the default of two [...]

  26. ??? WordPress Plugins ???????? | PatSonic linked to this post on 17 August, 2009

    [...] Revision Control [...]

  27. Revisions, revisions, revisions, revisions… — PluginsPress.com linked to this post on 10 September, 2009

    [...] Revision Control — allows admins to set the maximum number of saved revisions (I opt for only two), which can be overridden in individual posts. Note: Once you enable the plugin, be sure to set the maximum number of saved revisions; otherwise, there will be no limit. [...]

  28. Top 1000 WordPress Plugin Authors « Metode de promovare linked to this post on 7 November, 2009

    [...] Revision Control [...]

  29. List of Wordpress recommend Plugins for new Word Press Bloggers. - PcTutorial.info – Johnson Yip linked to this post on 13 November, 2009

    [...] Revision Control Allows finer control over the number of Revisions stored on a global & per-post/page basis. Visit plugin site [...]

  30. AYNiMac » Re: re:???????????????? linked to this post on 19 November, 2009

    [...] Revision Control?????????????? [...]

  31. anything Records » My Web linked to this post on 25 November, 2009

    [...] Revision Control [...]

  32. mmonet.info » ?????????????? WordPress???????? linked to this post on 27 November, 2009

    [...] ?RevisionControl ????????????????????????? ??????????????????????????????????????????? ???ID?????????????????????????????????????????? [...]

  33. Wordpress plugins » Media & Passie linked to this post on 20 December, 2009

    [...] Revision Control Ik heb geen zin in een database vol met revisions van een bepaalde post, ik sla het zelf op. Deze plugin kan de revisions uitschakelen en per post weer aanzetten. [...]

  34. WordPress ????????????? - masatsu file linked to this post on 12 January, 2010

    [...] ?Revision Control ??????????????????????????????????? [...]

  35. How did I build my Wordpress web site? (Part 1 of 2) | Toronto Web Design, Web Development, SEO, Wordpress, 3D Modeling... linked to this post on 27 February, 2010

    [...] Revision Control – Without this plugin you will have endless amount of revisions on your posts and pages. It is great to have revision, but each time you update your posts and pages it generate additional line in your database. If you have hundreds of posts or pages and each time you update. It will add more lines to your database, which mean bigger file size. This can get very large, enough to slow down your server performance. With this plugin you can the ability to tell Wordpress you only want 1 or 10 reversions and not 100’s. [...]

  36. Range of vision » Useful Wordpress Plugins linked to this post on 11 March, 2010

    [...] revision-control – controls (limits)  the number f revisions you accumulate; [...]



Some HTML is OK

or, reply to this post via trackback.