• Hi,
    This plugin seems to be exactly what I need i.e. we have custom post types with LOTS of meta boxes/data that needs adding to the revision (not just the title!)

    This appears to be working fine for us and am happy to start large scale testing – have about 1000 eager testers on a large multisite.

    Can you please let me know what happens when this gets implemented into the core code? i.e. I’ll need to uninstall the plugin, and thats all? Just worried about the site crashing with duplicate functions etc.

    Any idea on timescale for release? Thanks again for the timely release of this.
    Alex

Viewing 3 replies - 1 through 3 (of 3 total)
  • csschris

    (@csschris)

    Did you simply activate the plugin, add the meta key and it worked?

    Does it work for you on custom post types as well?

    Thread Starter Alex Furr

    (@alexfurr)

    Hi – yes we network activated it. But you also need to add the relevant code to your custom posts as well.

    i.e.

    `
    function add_meta_keys_to_revision( $keys ) {
    $keys = array(“meta1”, “meta2” etc.);
    return $keys;
    }
    add_filter( ‘wp_post_revision_meta_keys’, ‘add_meta_keys_to_revision’ );

    csschris

    (@csschris)

    Thanks, cant figure out why it doesn’t work for me. Multisite 4.2.2
    Will keep testing.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Works perfectly on multisite.’ is closed to new replies.