Is Multisite the RIGHT option for my case?

There is really no answer given the limited facts in the question. Are you requiring that users login to see pages/data? If not I don’t see why you would care to share user tables. There will be some things that multisite will handle better but there will be some things (handling certain plugins) that multisite … Read more

How do i get custom metabox data from each multisite blog?

For those who stumble upon this in the future, this was actually answered by the CMB2 author himself, Michael Beckwith: $sites = wp_get_sites(); $current_site = get_current_blog_id(); foreach ($sites as $site) { $details = get_blog_details($site[‘blog_id’]); $zSite = $details->blog_id; $mycolor=””; $mclass=””; if( $current_site == $zSite ) { $mclass=”active”; } switch_to_blog( $site[ ‘blog_id’ ] ); $mycolor = get_option( … Read more

Modifying get_author_posts_url() in Multisite

I know you’ve resolved it using .htaccess, but this is generally something you can amend in the site settings in your Network admin. Go to Sites, click Edit, and then scroll down to find the permalink structure which probably look like this: /blog/%posttitle%. Just remove the ‘/blog’ part, click save and you’ll probably find it’s … Read more