>
Download This Plugin | |
Download Elegant Themes | |
Name | WP-Post-Meta-Revisions |
Version | 0.1.8 |
Author | Adam Silverstein - code developed with others |
Rating | 100 |
Last updated | 2015-01-12 07:23:00 |
Downloads |
70
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
WP-Post-Meta-Revisions plugin added 6 bytes of resources to the Home page and 7 bytes of resources to the sample Post page.
WP-Post-Meta-Revisions plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! WP-Post-Meta-Revisions plugin ads no tables to your Wordpress blog database.This plugin implements a post meta revisioning feature as arrived at in https://core.trac.wordpress.org/ticket/20564.
The goal of releasing this code as a plugin is to allow as many people as possible to easily test the post meta revisioning feature, and also hopefully move towards inclusion of the feature into core, following the Features as Plugins model.
Further development of the code for this plugin will continue on its GitHub repository. Pull requests welcome!
To use this plugin, you must be running WordPress 4.1 or newer, two hooks were added in 4.1 that are required for this implementation.
To revision a post meta, you add its key via a filter:
function add_meta_keys_to_revision( $keys ) { $keys[] = 'meta-key-to-revision'; return $keys; } add_filter( 'wp_post_revision_meta_keys', 'add_meta_keys_to_revision' );
Features: