How do I batch create revisions of all posts?

I cleaned up an old-site from pasted tags, manually created lists, etc, and I’d like to keep the old posts as “revisions”, so we can easily “compare” with the old posts and retrieve/revert the original content if needed. So I should either injecting the revision rows in the new DB or just naturally create them … Read more

Schedule Page/CPT Revisions

I’m currently working on a wordpress installation that (ab-)uses wordpress Pages with extensive ammounts of custom fields to allow for simple handling of landingpages etc. Our users now asked for a simple solution that allows them to schedule changes to published wordpress for specific dates in the future. is there any plugin or wordpress functionality … Read more

Front end URL to restore a post/page

I was wondering if a url exists where one can click on a link and would automatically populate in the edit post of the most current revision. revision.php?action=restore&revision={newestcurrentrevisionID} doesn’t seem to work. all it does is brings me to the revisions page. Am I supposed to link to post.php? what would the action be? 0

Support auto-save and revisions for custom fields

I recently read this tutorial about custom fields in WordPress and wrote a simple plug-in to provide a metabox with a set of input fields. I do not use the Meta Box plug-in promoted on the web site. My implementation for the save_post hook is as follows: function save_my_data( $post_id ) { if ( defined( … Read more

New Plugin: Post update pushes a copy as a revision

I’ve been working alot with editing of posts after they’ve been published. I know I can hit update on the post to just update it, but I want to have the journey of revisions available for users to view on site. So I was thinking of a plugin. I’ve looked at http://wordpress.org/extend/plugins/duplicate-post/ which creates another … Read more

Cannot limit post revisions

I don’t know why but I cannot limit post revisions even though I’ve added the code define( ‘WP_POST_REVISIONS’, 3 ); Is there anything wrong in adding the code to wp-config file? Here are images of the problem. Post revisions not limiting 1 Answer 1 The option works from the moment you add it to your … Read more