Migrate from WPMU 2.8.6 to WP 3.0.4
-
Hey guys,
I finally need to convert my blog from WPMU 2.8.6 to the latest version. My WPMU is a multi-site setup with one MAINBLOG and 7 Subblogs. The Mainblog collects all Posts from the Subblog on its Frontpage and uses the SITEWIDE TAGS Wpmu Plugin to do this.Every blogpost on the mainblog has a specific colorscheme depending on the subblog it’s coming from. The entire Setup has maybe around 25 Users that can write posts and adminster the site.
I wonder what i have to consider when i manually upgrade to the latest version of WordPress?
1.) Will the Multisite Setup still work?
2.) Do i have to recode a lot of stuff?
3.) Anything else i need to consider?I’m using pieces of code like this:
<?php $org_blog_id = get_post_meta ($post-> ID, 'blogid', true); $blog_details = get_blog_details($org_blog_id); if (!$blog_details->blog_id =="") { ?> <span id="blogID" class="<?php $org_blog_id = get_post_meta ($post-> ID, 'blogid', true); $blog_details = get_blog_details($org_blog_id); echo 'blogID_'.$blog_details->blog_id; ?>"><!--<?php the_title(); ?> – --><?php $org_blog_id = get_post_meta ($post-> ID, 'blogid', true); $blog_details = get_blog_details($org_blog_id); echo $blog_details->blogname;?></span> <?php } ?>
E.g. this code gives every post on the mainblog a specific color depending on the color of the subblog. So every blogpost on the mainblog get’s a specific classname that lets me color the post. This feature for instance is very important. I need to be sure to have this working again when i migrate to a newer version.
Thank you for your tipps and tricks.
- The topic ‘Migrate from WPMU 2.8.6 to WP 3.0.4’ is closed to new replies.