Support » Plugin: WordPress MU Sitewide Tags Pages » saving post revisions into the sitewide tags blog?

  • We found on our very large multisite that most of our storage of the post table is from post revisions being saved into the SWT blog. We’ve alleviated by using by using the filter as following:

    add_filter('sitewide_tags_allowed_post_types',function ($post_types){
      $post_types['revision'] = false;
      return $post_types;
    }, 100);

    Is this intentional that post revisions are being saved into the SWT blog? Is there interest in a patch that would disable this via a configuration value.

    http://wordpress.org/extend/plugins/wordpress-mu-sitewide-tags/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Ron Rennick

    (@wpmuguru)

    No, post revisions should not be copied to the tags blog. Do you have the latest version? By default the only post type allowed is the post post type.

    Thread Starter Jared Wenerd

    (@jwenerd)

    We are running the latest version (0.4.2) and are running WordPress 3.5.1

    Plugin Author Ron Rennick

    (@wpmuguru)

    Have you tried disabling all plugins except SWT on both the tags blog & the site where you are saving the post?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘saving post revisions into the sitewide tags blog?’ is closed to new replies.