How can I define the maximum number of revisions on a per-post type basis? For example posts have 3 max revisions where as pages have a max of 10....
I’m just wondering is it wise to delete all post revisions and autosaves from database every once in a while? I mean they take a lot of database space...
Is there a function to set WP_POST_REVISIONS from a plugin instead of having to do it in config.php? I was thinking of doing this: runkit_constant_redefine( 'WP_POST_REVISIONS', 0 ); but...
I am trying to save a revision of a custom post type. This is what I have to check if the post has a parent: function save_revision( $post )...
As per this question over on DBA.SE, I’m having quite a few issues with database optimisation. I’m just wondering if removing/disabling revisions will positively impact my database usage? We...
I am building a CMS for content editors that have zero tech savvy. They currently use a system called NewsCred that allows them to compare revisions much like how...
How do you export revisions for posts? I cloned a site with it’s complete WordPress DB 4 months ago. After the clone revisions have been made to the existing...
I’m looking for a plugin that would keep track of a all the structural “changes” journal. For instance, the date+time of each wordpress upgrade, or plugin install/update/activation/desactivation or desinstallation,...
Quite sure there isn’t a way baked in to do this, but anyone have any ideas on how I would get something like this done? I want to turn...
I’ve been trying to find a filter or settings in WordPress to control the Autosave behavior, preferably by post type. When querying the database, I see our auto-drafts only...