Top Google Search Results
- wp_restore_post_revision Wordpress hook details -- Adam Brown ...
wp_restore_post_revision. WordPress version history for wp_restore_post_revision. This database has information for all major versions from WP 1.2.1 through ... - age WordPress * @subpackage Post_Revisions * @since 2.6.0 ...
function wp_restore_post_revision( $revision_id, $fields = null ) { if ( !$revision = wp_get_post_revision( $revision_id, ARRAY_A ) ) return $revision; if ( !is_array( ... - Saving Post Meta Field Revisions in WordPress · Ludicrous
Apr 27, 2012 ... For this we hook into the wp_restore_post_revision action and update the meta field to the version stored at the revision we're reverting to. - Wordpress - custom fields are not restored to previous revisions ...
Jun 29, 2011... could save the meta when the revision is made using _wp_put_post_revision and you can restore the meta using wp_restore_post_revision .