SlideShare ist ein Scribd-Unternehmen logo
1 von 46
WordPress Multisite




                Brad Williams
                   @williamsba
Who Am I?

Brad Williams
Co-Founder of WebDevStudios.com
Co-Organizer WordCamp Philly
   & Philly WordPress Meetup
Co-Author of Professional WordPress
   (http://bit.ly/pro-wp)
& Professional WordPress Plugin Development
   (http://amzn.to/plugindevbook)




           Slides available at: http://www.slideshare.net/williamsba
Bootcamp Brad circa ‘99 @ MCRD
Topics
 What is Multisite?
 Enabling and Configuring Multisite
 Multisite Network Admin
 Working with Users in a Network
 Understanding Plugins and Themes
 Recommended Plugins
 Examples of Multisite Networks
 Multisite Resources
What is Multisite?
What is Multisite?


WordPress Multisite enables
   you to create multiple
WordPress websites with a
single install of WordPress
Advantages to using Multisite


•   Create unlimited sites in a single install of
    WordPress
•   Share themes, plugins, and users
•   Upgrade once upgrade everything
•   Run as subdomains, subdirectories, or top-
    level domains
Advantages to using Multisite


Two important resources to read prior to enabling and
configuring Multisite:

http://codex.wordpress.org/Before_You_Create_A_Network

http://codex.wordpress.org/Create_A_Network
Types of Networks

  Domain Based
  •example.com
  •brad.example.com
  •zombies.example.com


  Path Based
  •example.com
  •example.com/brad
  •example.com/zombies
Types of Networks
with Domain Mapping
   Domain Based
   •example.com
   •brad.com (mapped)
   •zombies.example.com


   Path Based
   •example.com
   •brad.com (mapped)
   •example.com/zombies
Enabling and Configuring Multisite
 Step 1: Add the below code to wp-config.php:
          define('WP_ALLOW_MULTISITE', true);
Enabling and Configuring Multisite
 Step 1: Tools > Network Setup is now available




http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite
 Plugins MUST be disabled to configure Multisite




http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite
 Plugins MUST be disabled to configure Multisite




http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite
 Q: Why am I forced to use subdomains on older
 WordPress installs?

 A: Sites older than 30-days will see this
 warning. The reason is subfolders in Multisite
 could conflict with page URLs that already exist.
  Also /blog is added to the main website’s blog
 permalink structure, which could cause existing
 blog posts to 404




http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite




http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite
 Step 2: Create a blogs.dir directory at /wp-content/blogs.dir




http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite
 Step 3: Add the code provided to your wp-config.php file




  This code may be different depending on your Multisite configuration



http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite
 Step 4: Add the code provided to your .htaccess file

  RewriteEngine On
  RewriteBase /
  RewriteRule ^index.php$ - [L]

  # uploaded files
  RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]

  RewriteCond %{REQUEST_FILENAME} -f [OR]
  RewriteCond %{REQUEST_FILENAME} -d
  RewriteRule ^ - [L]
  RewriteRule . index.php [L]


         Replace the default WordPress .htaccess rules



http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite
 Step 5: Refresh and Pray!




 WordPress will force you to
 login again




http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite

 New Network Menu will appear in your WordPress Admin bar

 Hovering will show Network Admin and all sites in the network
 you are a member of




http://codex.wordpress.org/Create_A_Network
Enabling and Configuring Multisite




http://codex.wordpress.org/Create_A_Network
Multisite Network Admin
Administration section for network sites and settings




 Located at http://example.com/wp-admin/network/
Multisite Network Admin

Sites menu allows you to view, modify, and create new sites in your network




            Located at http://example.com/wp-admin/network/
Multisite Network Admin
                   To create a new site visit Sites > Add New




If using subdomains you need to verify the subdomain is setup on your host to
point to the root directory for WordPress.

If your host allows DNS Wildcard A records you can assign *.example.com to point
to WordPress, so all new sites will work automatically.
Working with Users in a Network
     Multisite adds a new user role: SUPER ADMIN!
Working with Users in a Network

                 Super Admins Can:
     •Manage Network
     •Manage Sites
     •Manage Network Users
     •Manage Network Themes and Plugins
     •Manage Network Options



TL;DR: Super Admins can do everything!

     http://codex.wordpress.org/Roles_and_Capabilities
Working with Users in a Network
    Edit any user and enable the Super Admin option
Understanding Themes in a Network
  Themes must be Network Enabled for use in your Multisite network
Understanding Themes in a Network
If a theme is not Network Enabled the theme will not be
        available to use on sites in your network




   Site Administrators can NOT install themes in a Multisite network by default
Understanding Plugins in a Network
   Plugins can be Network Enabled for use in your Multisite network
                                  Or
      Plugins can be selectively enabled per site in your network
Understanding Plugins in a Network
 By default the Plugins menu is hidden to Site Admins

To enable the Plugins menu visit Settings in the Network
    Admin and check “Enable administration menus”




    Site Administrators can NOT install themes in a Multisite network by default
Multisite Isn’t Scary, Right?!
Multisite Examples
    Site: Baja.com
Multisite Examples
                Site: Baja.com

Each site in the network is a “region” of Baja California
Multisite Examples
             Site: Baja.com


       Each site features its own content related to that region



All content is
aggregated to
Baja.com
Multisite Examples
             Site: AwayToGarden.com

            Two sites in her Multisite Network
AwaytoGarden.com

                                         AwayToGarden.com/book
Recommended Multisite Plugins
                          Domain Mapping

• Map a top-level domain
  (example.com) to any site
  in your network
• Allow site admins control
  over mapped domains




        http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/
Recommended Multisite Plugins
                                 Sitewide Tags

• Creates a /tags site in your
  network
• All posts created on your
  site are copied to the /tags
  site
• Makes aggregating content
  in Multisite very easy!




          http://wordpress.org/extend/plugins/wordpress-mu-sitewide-tags/
Recommended Multisite Plugins
                         New Blog Defaults

• Set defaults used for all
  new sites created in your
  network
• Can delete default content
  like Hello World post,
  comment, etc
• Can auto-add users to all
  new sites created by ID




           http://wordpress.org/extend/plugins/wpmu-new-blog-defaults/
Recommended Multisite Plugins
                     WP Multisite Replicator

• Duplicates a site to a new
  site in your network
• Copies widgets, theme,
  and plugin settings
• Copies all content




                          http://wpebooks.com/replicator/
Recommended Multisite Plugins
                                 Networks+

• Can create a network of
  networks
• Nested subdomains and
  top-level domains with
  their own child sites




                            http://wpebooks.com/networks/
Recommended Multisite Plugins
      WP Multisite Replicator




        http://wpebooks.com/networks/
Multisite Resources
 Official Resources
    › WordPress Core!
    › http://codex.wordpress.org/Create_A_Network
    › http://wordpress.org/support/forum/multisite
    › http://codex.wordpress.org/Debugging_a_WordPress_Network
    › http://codex.wordpress.org/Migrating_Multiple_Blogs_into_Word
      Press_3.0_Multisite


 Multisite Websites & Articles
    › http://wpebooks.com/
    › http://wpcandy.com/presents/an-introduction-to-wordpress-
      multisite
    › http://wpmututorials.com/
    › http://wpmu.org/
Contact

Brad Williams
brad@webdevstudios.com

Blog: strangework.com
Twitter: @williamsba
IRC: WDS-Brad

       http://www.slideshare.net/williamsba
Win a copy of Professional WordPress Plugin Development!




Tweet: @williamsba WordPress Multisite is NOT scary! #wcsd

Weitere ähnliche Inhalte

Was ist angesagt?

Introduction to WordPress Multisite
Introduction to WordPress MultisiteIntroduction to WordPress Multisite
Introduction to WordPress MultisiteCraig Taylor
 
NamesCon 2015 Wordpress Beginner Session
NamesCon 2015 Wordpress Beginner SessionNamesCon 2015 Wordpress Beginner Session
NamesCon 2015 Wordpress Beginner SessionBruce Marler
 
Multisite core concepts final
Multisite core concepts finalMultisite core concepts final
Multisite core concepts finalUmesh Chaudhary
 
Basic WordPress for Beginner ppt
Basic WordPress for Beginner pptBasic WordPress for Beginner ppt
Basic WordPress for Beginner pptDipika Wadhvani
 
Speeding Up WordPress sites
Speeding Up WordPress sitesSpeeding Up WordPress sites
Speeding Up WordPress sitesJason Yingling
 
Introduction to WordPress 2016
Introduction to WordPress 2016Introduction to WordPress 2016
Introduction to WordPress 2016LumosTech
 
WordPress(The Big Picture)
WordPress(The Big Picture)WordPress(The Big Picture)
WordPress(The Big Picture)Sandip Basnet
 
WordPress Server Security
WordPress Server SecurityWordPress Server Security
WordPress Server SecurityPeter Baylies
 
GDI - Intro to WordPress
GDI - Intro to WordPressGDI - Intro to WordPress
GDI - Intro to WordPressSuzette Franck
 
Basic WordPress Workshop Presentation
Basic WordPress Workshop PresentationBasic WordPress Workshop Presentation
Basic WordPress Workshop PresentationFelix Albutra
 
Basic Wordpress PPT
Basic Wordpress PPT Basic Wordpress PPT
Basic Wordpress PPT mayur akabari
 
WordPress Resources Nov 2014
WordPress Resources Nov 2014WordPress Resources Nov 2014
WordPress Resources Nov 2014Judy Wilson
 
WordPress Multisite deck
WordPress Multisite deckWordPress Multisite deck
WordPress Multisite deckbelsien
 
WordPress - Open Source Overview Presentation
WordPress - Open Source Overview PresentationWordPress - Open Source Overview Presentation
WordPress - Open Source Overview PresentationAndy Stratton
 
When to use WordPress MultiSite WordCamp Nepal 2012
When to use WordPress MultiSite WordCamp Nepal 2012When to use WordPress MultiSite WordCamp Nepal 2012
When to use WordPress MultiSite WordCamp Nepal 2012Utsav Singh Rathour
 
Wordpress CMS tutorial and guide manual
Wordpress CMS tutorial and guide manualWordpress CMS tutorial and guide manual
Wordpress CMS tutorial and guide manualRalph Francis Cue
 
WordPress for Education PPT
WordPress for Education PPTWordPress for Education PPT
WordPress for Education PPTjekkilekki
 
Utsav Singh Rathour: How, Why and Where to use WordPress multisite
Utsav Singh Rathour: How, Why and Where to use WordPress multisiteUtsav Singh Rathour: How, Why and Where to use WordPress multisite
Utsav Singh Rathour: How, Why and Where to use WordPress multisitewpnepal
 

Was ist angesagt? (20)

Introduction to WordPress Multisite
Introduction to WordPress MultisiteIntroduction to WordPress Multisite
Introduction to WordPress Multisite
 
NamesCon 2015 Wordpress Beginner Session
NamesCon 2015 Wordpress Beginner SessionNamesCon 2015 Wordpress Beginner Session
NamesCon 2015 Wordpress Beginner Session
 
Multisite core concepts final
Multisite core concepts finalMultisite core concepts final
Multisite core concepts final
 
Basic WordPress for Beginner ppt
Basic WordPress for Beginner pptBasic WordPress for Beginner ppt
Basic WordPress for Beginner ppt
 
Speeding Up WordPress sites
Speeding Up WordPress sitesSpeeding Up WordPress sites
Speeding Up WordPress sites
 
Introduction to WordPress 2016
Introduction to WordPress 2016Introduction to WordPress 2016
Introduction to WordPress 2016
 
WordPress(The Big Picture)
WordPress(The Big Picture)WordPress(The Big Picture)
WordPress(The Big Picture)
 
Intro to Wordpress
Intro to WordpressIntro to Wordpress
Intro to Wordpress
 
WordPress Server Security
WordPress Server SecurityWordPress Server Security
WordPress Server Security
 
GDI - Intro to WordPress
GDI - Intro to WordPressGDI - Intro to WordPress
GDI - Intro to WordPress
 
Basic WordPress Workshop Presentation
Basic WordPress Workshop PresentationBasic WordPress Workshop Presentation
Basic WordPress Workshop Presentation
 
Basic Wordpress PPT
Basic Wordpress PPT Basic Wordpress PPT
Basic Wordpress PPT
 
WordPress Resources Nov 2014
WordPress Resources Nov 2014WordPress Resources Nov 2014
WordPress Resources Nov 2014
 
Wordpress ppt
Wordpress pptWordpress ppt
Wordpress ppt
 
WordPress Multisite deck
WordPress Multisite deckWordPress Multisite deck
WordPress Multisite deck
 
WordPress - Open Source Overview Presentation
WordPress - Open Source Overview PresentationWordPress - Open Source Overview Presentation
WordPress - Open Source Overview Presentation
 
When to use WordPress MultiSite WordCamp Nepal 2012
When to use WordPress MultiSite WordCamp Nepal 2012When to use WordPress MultiSite WordCamp Nepal 2012
When to use WordPress MultiSite WordCamp Nepal 2012
 
Wordpress CMS tutorial and guide manual
Wordpress CMS tutorial and guide manualWordpress CMS tutorial and guide manual
Wordpress CMS tutorial and guide manual
 
WordPress for Education PPT
WordPress for Education PPTWordPress for Education PPT
WordPress for Education PPT
 
Utsav Singh Rathour: How, Why and Where to use WordPress multisite
Utsav Singh Rathour: How, Why and Where to use WordPress multisiteUtsav Singh Rathour: How, Why and Where to use WordPress multisite
Utsav Singh Rathour: How, Why and Where to use WordPress multisite
 

Andere mochten auch

WordPress Multisite General Overview
WordPress Multisite General OverviewWordPress Multisite General Overview
WordPress Multisite General OverviewRonald Huereca
 
WordPress Multisite | WordPress Meetup Saint Petersburg, Russia 13 January 2017
WordPress Multisite | WordPress Meetup Saint Petersburg, Russia 13 January 2017WordPress Multisite | WordPress Meetup Saint Petersburg, Russia 13 January 2017
WordPress Multisite | WordPress Meetup Saint Petersburg, Russia 13 January 2017Doug Lawrence
 
8,000 Sites and Counting: Running a *Huge* WordPress Service
8,000 Sites and Counting: Running a *Huge* WordPress Service8,000 Sites and Counting: Running a *Huge* WordPress Service
8,000 Sites and Counting: Running a *Huge* WordPress ServiceBilly Hylton
 
Extending WordPress Multisite for Fun and Profit by Angie Meeker at WordPress...
Extending WordPress Multisite for Fun and Profit by Angie Meeker at WordPress...Extending WordPress Multisite for Fun and Profit by Angie Meeker at WordPress...
Extending WordPress Multisite for Fun and Profit by Angie Meeker at WordPress...Angela Meeker
 
WordPress, WordPress Multisite y WordPress Multinetwork
WordPress, WordPress Multisite y WordPress MultinetworkWordPress, WordPress Multisite y WordPress Multinetwork
WordPress, WordPress Multisite y WordPress MultinetworkJosé Conti Calveras
 
2014 WordCamp Austin: Do's and Don'ts of WordPress Multisite
2014 WordCamp Austin: Do's and Don'ts of WordPress Multisite2014 WordCamp Austin: Do's and Don'ts of WordPress Multisite
2014 WordCamp Austin: Do's and Don'ts of WordPress MultisiteWPMU DEV
 
Top Plugins for WordPress multisite
Top Plugins for WordPress multisiteTop Plugins for WordPress multisite
Top Plugins for WordPress multisiteAndrea Rennick
 
Optimize WordPress Like a Super Affiliate
Optimize WordPress Like a Super AffiliateOptimize WordPress Like a Super Affiliate
Optimize WordPress Like a Super AffiliateAffiliate Summit
 
How To Effectively Train Autonomous Media Buyers
How To Effectively Train Autonomous Media BuyersHow To Effectively Train Autonomous Media Buyers
How To Effectively Train Autonomous Media BuyersAffiliate Summit
 

Andere mochten auch (9)

WordPress Multisite General Overview
WordPress Multisite General OverviewWordPress Multisite General Overview
WordPress Multisite General Overview
 
WordPress Multisite | WordPress Meetup Saint Petersburg, Russia 13 January 2017
WordPress Multisite | WordPress Meetup Saint Petersburg, Russia 13 January 2017WordPress Multisite | WordPress Meetup Saint Petersburg, Russia 13 January 2017
WordPress Multisite | WordPress Meetup Saint Petersburg, Russia 13 January 2017
 
8,000 Sites and Counting: Running a *Huge* WordPress Service
8,000 Sites and Counting: Running a *Huge* WordPress Service8,000 Sites and Counting: Running a *Huge* WordPress Service
8,000 Sites and Counting: Running a *Huge* WordPress Service
 
Extending WordPress Multisite for Fun and Profit by Angie Meeker at WordPress...
Extending WordPress Multisite for Fun and Profit by Angie Meeker at WordPress...Extending WordPress Multisite for Fun and Profit by Angie Meeker at WordPress...
Extending WordPress Multisite for Fun and Profit by Angie Meeker at WordPress...
 
WordPress, WordPress Multisite y WordPress Multinetwork
WordPress, WordPress Multisite y WordPress MultinetworkWordPress, WordPress Multisite y WordPress Multinetwork
WordPress, WordPress Multisite y WordPress Multinetwork
 
2014 WordCamp Austin: Do's and Don'ts of WordPress Multisite
2014 WordCamp Austin: Do's and Don'ts of WordPress Multisite2014 WordCamp Austin: Do's and Don'ts of WordPress Multisite
2014 WordCamp Austin: Do's and Don'ts of WordPress Multisite
 
Top Plugins for WordPress multisite
Top Plugins for WordPress multisiteTop Plugins for WordPress multisite
Top Plugins for WordPress multisite
 
Optimize WordPress Like a Super Affiliate
Optimize WordPress Like a Super AffiliateOptimize WordPress Like a Super Affiliate
Optimize WordPress Like a Super Affiliate
 
How To Effectively Train Autonomous Media Buyers
How To Effectively Train Autonomous Media BuyersHow To Effectively Train Autonomous Media Buyers
How To Effectively Train Autonomous Media Buyers
 

Ähnlich wie WordPress Multisite

Ultimate Guide to WordPress Multisite
Ultimate Guide to WordPress MultisiteUltimate Guide to WordPress Multisite
Ultimate Guide to WordPress MultisiteAndrew Marks
 
How to be a Super Super-Admin - WCMTL 2014
How to be a Super Super-Admin - WCMTL 2014How to be a Super Super-Admin - WCMTL 2014
How to be a Super Super-Admin - WCMTL 2014Richard Archambault
 
Create a site with Multisite plugin WordPress
Create a site with Multisite plugin WordPressCreate a site with Multisite plugin WordPress
Create a site with Multisite plugin WordPressShubham Vijay
 
Wordpress website development
Wordpress website developmentWordpress website development
Wordpress website developmentJohn Faust
 
Worcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20minsWorcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20minsChandra Prakash Thapa
 
Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 minsChandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 minswpnepal
 
From WordPress With Love
From WordPress With LoveFrom WordPress With Love
From WordPress With LoveUp2 Technology
 
Word press multisite network how to install & setup it
Word press multisite network how to install & setup itWord press multisite network how to install & setup it
Word press multisite network how to install & setup itTemok IT Services
 
WordPress MU 101
WordPress MU 101WordPress MU 101
WordPress MU 101Pete Mall
 
An Introduction to Multisite - WordCamp Phoenix
An Introduction to Multisite - WordCamp PhoenixAn Introduction to Multisite - WordCamp Phoenix
An Introduction to Multisite - WordCamp Phoenixvegasgeek
 
Kick start your career with WordPress
Kick start your career with WordPressKick start your career with WordPress
Kick start your career with WordPressJignasa Naik
 
Developing formultisite
Developing formultisiteDeveloping formultisite
Developing formultisiteMarty Thornley
 
Csun retrofitting anoosha&sathish-2
Csun retrofitting anoosha&sathish-2Csun retrofitting anoosha&sathish-2
Csun retrofitting anoosha&sathish-2Sathish Kumar
 
Kick start your career with wordpress
Kick start your career with wordpressKick start your career with wordpress
Kick start your career with wordpressOpenDev
 

Ähnlich wie WordPress Multisite (20)

Ultimate Guide to WordPress Multisite
Ultimate Guide to WordPress MultisiteUltimate Guide to WordPress Multisite
Ultimate Guide to WordPress Multisite
 
Savannah
SavannahSavannah
Savannah
 
How to be a Super Super-Admin - WCMTL 2014
How to be a Super Super-Admin - WCMTL 2014How to be a Super Super-Admin - WCMTL 2014
How to be a Super Super-Admin - WCMTL 2014
 
Create a site with Multisite plugin WordPress
Create a site with Multisite plugin WordPressCreate a site with Multisite plugin WordPress
Create a site with Multisite plugin WordPress
 
Wordpress website development
Wordpress website developmentWordpress website development
Wordpress website development
 
Worcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20minsWorcamp2012 make a wordpress multisite in 20mins
Worcamp2012 make a wordpress multisite in 20mins
 
Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 minsChandra Prakash Thapa: Make a WordPress Multisite in 20 mins
Chandra Prakash Thapa: Make a WordPress Multisite in 20 mins
 
From WordPress With Love
From WordPress With LoveFrom WordPress With Love
From WordPress With Love
 
Word press multisite network how to install & setup it
Word press multisite network how to install & setup itWord press multisite network how to install & setup it
Word press multisite network how to install & setup it
 
WordPress MU 101
WordPress MU 101WordPress MU 101
WordPress MU 101
 
More Multisite for the Masses
More Multisite for the MassesMore Multisite for the Masses
More Multisite for the Masses
 
An Introduction to Multisite - WordCamp Phoenix
An Introduction to Multisite - WordCamp PhoenixAn Introduction to Multisite - WordCamp Phoenix
An Introduction to Multisite - WordCamp Phoenix
 
Kick start your career with WordPress
Kick start your career with WordPressKick start your career with WordPress
Kick start your career with WordPress
 
WordPress Multisite
WordPress MultisiteWordPress Multisite
WordPress Multisite
 
WordPress Complete Tutorial
WordPress Complete TutorialWordPress Complete Tutorial
WordPress Complete Tutorial
 
WordCamp 2015
WordCamp 2015WordCamp 2015
WordCamp 2015
 
Developing formultisite
Developing formultisiteDeveloping formultisite
Developing formultisite
 
Basic word press
Basic word pressBasic word press
Basic word press
 
Csun retrofitting anoosha&sathish-2
Csun retrofitting anoosha&sathish-2Csun retrofitting anoosha&sathish-2
Csun retrofitting anoosha&sathish-2
 
Kick start your career with wordpress
Kick start your career with wordpressKick start your career with wordpress
Kick start your career with wordpress
 

Mehr von Brad Williams

From Freelance to Agency: Hiring Employee Number One - WordCamp London 2015
From Freelance to Agency: Hiring Employee Number One - WordCamp London 2015From Freelance to Agency: Hiring Employee Number One - WordCamp London 2015
From Freelance to Agency: Hiring Employee Number One - WordCamp London 2015Brad Williams
 
Hiring Employee Number One: From Freelancer to Agency
Hiring Employee Number One: From Freelancer to AgencyHiring Employee Number One: From Freelancer to Agency
Hiring Employee Number One: From Freelancer to AgencyBrad Williams
 
Writing Secure WordPress Code WordCamp NYC 2014
Writing Secure WordPress Code WordCamp NYC 2014Writing Secure WordPress Code WordCamp NYC 2014
Writing Secure WordPress Code WordCamp NYC 2014Brad Williams
 
How to Make a Native Mobile App with WordPress
How to Make a Native Mobile App with WordPressHow to Make a Native Mobile App with WordPress
How to Make a Native Mobile App with WordPressBrad Williams
 
Writing Secure WordPress Code
Writing Secure WordPress CodeWriting Secure WordPress Code
Writing Secure WordPress CodeBrad Williams
 
WordPress Security WordCamp OC 2013
WordPress Security WordCamp OC 2013WordPress Security WordCamp OC 2013
WordPress Security WordCamp OC 2013Brad Williams
 
Using WordPress as an Application Framework
Using WordPress as an Application FrameworkUsing WordPress as an Application Framework
Using WordPress as an Application FrameworkBrad Williams
 
Top Ten WordPress Security Tips for 2012
Top Ten WordPress Security Tips for 2012Top Ten WordPress Security Tips for 2012
Top Ten WordPress Security Tips for 2012Brad Williams
 
WordPress Security from WordCamp NYC 2012
WordPress Security from WordCamp NYC 2012WordPress Security from WordCamp NYC 2012
WordPress Security from WordCamp NYC 2012Brad Williams
 
WordPress for Beginners
WordPress for BeginnersWordPress for Beginners
WordPress for BeginnersBrad Williams
 
Creating Your First WordPress Plugin
Creating Your First WordPress PluginCreating Your First WordPress Plugin
Creating Your First WordPress PluginBrad Williams
 
Surviving the Zombie Apocalypse using Custom Post Types and Taxonomies
Surviving the Zombie Apocalypse using Custom Post Types and TaxonomiesSurviving the Zombie Apocalypse using Custom Post Types and Taxonomies
Surviving the Zombie Apocalypse using Custom Post Types and TaxonomiesBrad Williams
 
Intro to WordPress Plugin Development
Intro to WordPress Plugin DevelopmentIntro to WordPress Plugin Development
Intro to WordPress Plugin DevelopmentBrad Williams
 
Spooky WordPress: Disturbingly Brilliant Uses of WP
Spooky WordPress: Disturbingly Brilliant Uses of WPSpooky WordPress: Disturbingly Brilliant Uses of WP
Spooky WordPress: Disturbingly Brilliant Uses of WPBrad Williams
 
WordCamp Mid-Atlantic WordPress Security
WordCamp Mid-Atlantic WordPress SecurityWordCamp Mid-Atlantic WordPress Security
WordCamp Mid-Atlantic WordPress SecurityBrad Williams
 
Now That's What I Call WordPress Security 2010
Now That's What I Call WordPress Security 2010Now That's What I Call WordPress Security 2010
Now That's What I Call WordPress Security 2010Brad Williams
 
Custom Post Types and Taxonomies in WordPress
Custom Post Types and Taxonomies in WordPressCustom Post Types and Taxonomies in WordPress
Custom Post Types and Taxonomies in WordPressBrad Williams
 
Top 20 WordPress Plugins You've Never Heard Of
Top 20 WordPress Plugins You've Never Heard OfTop 20 WordPress Plugins You've Never Heard Of
Top 20 WordPress Plugins You've Never Heard OfBrad Williams
 
WordPress Security - WordCamp Boston 2010
WordPress Security - WordCamp Boston 2010WordPress Security - WordCamp Boston 2010
WordPress Security - WordCamp Boston 2010Brad Williams
 
WordPress Security - WordCamp NYC 2009
WordPress Security - WordCamp NYC 2009WordPress Security - WordCamp NYC 2009
WordPress Security - WordCamp NYC 2009Brad Williams
 

Mehr von Brad Williams (20)

From Freelance to Agency: Hiring Employee Number One - WordCamp London 2015
From Freelance to Agency: Hiring Employee Number One - WordCamp London 2015From Freelance to Agency: Hiring Employee Number One - WordCamp London 2015
From Freelance to Agency: Hiring Employee Number One - WordCamp London 2015
 
Hiring Employee Number One: From Freelancer to Agency
Hiring Employee Number One: From Freelancer to AgencyHiring Employee Number One: From Freelancer to Agency
Hiring Employee Number One: From Freelancer to Agency
 
Writing Secure WordPress Code WordCamp NYC 2014
Writing Secure WordPress Code WordCamp NYC 2014Writing Secure WordPress Code WordCamp NYC 2014
Writing Secure WordPress Code WordCamp NYC 2014
 
How to Make a Native Mobile App with WordPress
How to Make a Native Mobile App with WordPressHow to Make a Native Mobile App with WordPress
How to Make a Native Mobile App with WordPress
 
Writing Secure WordPress Code
Writing Secure WordPress CodeWriting Secure WordPress Code
Writing Secure WordPress Code
 
WordPress Security WordCamp OC 2013
WordPress Security WordCamp OC 2013WordPress Security WordCamp OC 2013
WordPress Security WordCamp OC 2013
 
Using WordPress as an Application Framework
Using WordPress as an Application FrameworkUsing WordPress as an Application Framework
Using WordPress as an Application Framework
 
Top Ten WordPress Security Tips for 2012
Top Ten WordPress Security Tips for 2012Top Ten WordPress Security Tips for 2012
Top Ten WordPress Security Tips for 2012
 
WordPress Security from WordCamp NYC 2012
WordPress Security from WordCamp NYC 2012WordPress Security from WordCamp NYC 2012
WordPress Security from WordCamp NYC 2012
 
WordPress for Beginners
WordPress for BeginnersWordPress for Beginners
WordPress for Beginners
 
Creating Your First WordPress Plugin
Creating Your First WordPress PluginCreating Your First WordPress Plugin
Creating Your First WordPress Plugin
 
Surviving the Zombie Apocalypse using Custom Post Types and Taxonomies
Surviving the Zombie Apocalypse using Custom Post Types and TaxonomiesSurviving the Zombie Apocalypse using Custom Post Types and Taxonomies
Surviving the Zombie Apocalypse using Custom Post Types and Taxonomies
 
Intro to WordPress Plugin Development
Intro to WordPress Plugin DevelopmentIntro to WordPress Plugin Development
Intro to WordPress Plugin Development
 
Spooky WordPress: Disturbingly Brilliant Uses of WP
Spooky WordPress: Disturbingly Brilliant Uses of WPSpooky WordPress: Disturbingly Brilliant Uses of WP
Spooky WordPress: Disturbingly Brilliant Uses of WP
 
WordCamp Mid-Atlantic WordPress Security
WordCamp Mid-Atlantic WordPress SecurityWordCamp Mid-Atlantic WordPress Security
WordCamp Mid-Atlantic WordPress Security
 
Now That's What I Call WordPress Security 2010
Now That's What I Call WordPress Security 2010Now That's What I Call WordPress Security 2010
Now That's What I Call WordPress Security 2010
 
Custom Post Types and Taxonomies in WordPress
Custom Post Types and Taxonomies in WordPressCustom Post Types and Taxonomies in WordPress
Custom Post Types and Taxonomies in WordPress
 
Top 20 WordPress Plugins You've Never Heard Of
Top 20 WordPress Plugins You've Never Heard OfTop 20 WordPress Plugins You've Never Heard Of
Top 20 WordPress Plugins You've Never Heard Of
 
WordPress Security - WordCamp Boston 2010
WordPress Security - WordCamp Boston 2010WordPress Security - WordCamp Boston 2010
WordPress Security - WordCamp Boston 2010
 
WordPress Security - WordCamp NYC 2009
WordPress Security - WordCamp NYC 2009WordPress Security - WordCamp NYC 2009
WordPress Security - WordCamp NYC 2009
 

Kürzlich hochgeladen

The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 

Kürzlich hochgeladen (20)

The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 

WordPress Multisite

  • 1. WordPress Multisite Brad Williams @williamsba
  • 2. Who Am I? Brad Williams Co-Founder of WebDevStudios.com Co-Organizer WordCamp Philly & Philly WordPress Meetup Co-Author of Professional WordPress (http://bit.ly/pro-wp) & Professional WordPress Plugin Development (http://amzn.to/plugindevbook) Slides available at: http://www.slideshare.net/williamsba
  • 3. Bootcamp Brad circa ‘99 @ MCRD
  • 4. Topics  What is Multisite?  Enabling and Configuring Multisite  Multisite Network Admin  Working with Users in a Network  Understanding Plugins and Themes  Recommended Plugins  Examples of Multisite Networks  Multisite Resources
  • 6. What is Multisite? WordPress Multisite enables you to create multiple WordPress websites with a single install of WordPress
  • 7. Advantages to using Multisite • Create unlimited sites in a single install of WordPress • Share themes, plugins, and users • Upgrade once upgrade everything • Run as subdomains, subdirectories, or top- level domains
  • 8. Advantages to using Multisite Two important resources to read prior to enabling and configuring Multisite: http://codex.wordpress.org/Before_You_Create_A_Network http://codex.wordpress.org/Create_A_Network
  • 9. Types of Networks Domain Based •example.com •brad.example.com •zombies.example.com Path Based •example.com •example.com/brad •example.com/zombies
  • 10. Types of Networks with Domain Mapping Domain Based •example.com •brad.com (mapped) •zombies.example.com Path Based •example.com •brad.com (mapped) •example.com/zombies
  • 11. Enabling and Configuring Multisite Step 1: Add the below code to wp-config.php: define('WP_ALLOW_MULTISITE', true);
  • 12. Enabling and Configuring Multisite Step 1: Tools > Network Setup is now available http://codex.wordpress.org/Create_A_Network
  • 13. Enabling and Configuring Multisite Plugins MUST be disabled to configure Multisite http://codex.wordpress.org/Create_A_Network
  • 14. Enabling and Configuring Multisite Plugins MUST be disabled to configure Multisite http://codex.wordpress.org/Create_A_Network
  • 15. Enabling and Configuring Multisite Q: Why am I forced to use subdomains on older WordPress installs? A: Sites older than 30-days will see this warning. The reason is subfolders in Multisite could conflict with page URLs that already exist. Also /blog is added to the main website’s blog permalink structure, which could cause existing blog posts to 404 http://codex.wordpress.org/Create_A_Network
  • 16. Enabling and Configuring Multisite http://codex.wordpress.org/Create_A_Network
  • 17. Enabling and Configuring Multisite Step 2: Create a blogs.dir directory at /wp-content/blogs.dir http://codex.wordpress.org/Create_A_Network
  • 18. Enabling and Configuring Multisite Step 3: Add the code provided to your wp-config.php file This code may be different depending on your Multisite configuration http://codex.wordpress.org/Create_A_Network
  • 19. Enabling and Configuring Multisite Step 4: Add the code provided to your .htaccess file RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L] Replace the default WordPress .htaccess rules http://codex.wordpress.org/Create_A_Network
  • 20. Enabling and Configuring Multisite Step 5: Refresh and Pray! WordPress will force you to login again http://codex.wordpress.org/Create_A_Network
  • 21. Enabling and Configuring Multisite New Network Menu will appear in your WordPress Admin bar Hovering will show Network Admin and all sites in the network you are a member of http://codex.wordpress.org/Create_A_Network
  • 22. Enabling and Configuring Multisite http://codex.wordpress.org/Create_A_Network
  • 23. Multisite Network Admin Administration section for network sites and settings Located at http://example.com/wp-admin/network/
  • 24. Multisite Network Admin Sites menu allows you to view, modify, and create new sites in your network Located at http://example.com/wp-admin/network/
  • 25. Multisite Network Admin To create a new site visit Sites > Add New If using subdomains you need to verify the subdomain is setup on your host to point to the root directory for WordPress. If your host allows DNS Wildcard A records you can assign *.example.com to point to WordPress, so all new sites will work automatically.
  • 26. Working with Users in a Network Multisite adds a new user role: SUPER ADMIN!
  • 27. Working with Users in a Network Super Admins Can: •Manage Network •Manage Sites •Manage Network Users •Manage Network Themes and Plugins •Manage Network Options TL;DR: Super Admins can do everything! http://codex.wordpress.org/Roles_and_Capabilities
  • 28. Working with Users in a Network Edit any user and enable the Super Admin option
  • 29. Understanding Themes in a Network Themes must be Network Enabled for use in your Multisite network
  • 30. Understanding Themes in a Network If a theme is not Network Enabled the theme will not be available to use on sites in your network Site Administrators can NOT install themes in a Multisite network by default
  • 31. Understanding Plugins in a Network Plugins can be Network Enabled for use in your Multisite network Or Plugins can be selectively enabled per site in your network
  • 32. Understanding Plugins in a Network By default the Plugins menu is hidden to Site Admins To enable the Plugins menu visit Settings in the Network Admin and check “Enable administration menus” Site Administrators can NOT install themes in a Multisite network by default
  • 34. Multisite Examples Site: Baja.com
  • 35. Multisite Examples Site: Baja.com Each site in the network is a “region” of Baja California
  • 36. Multisite Examples Site: Baja.com Each site features its own content related to that region All content is aggregated to Baja.com
  • 37. Multisite Examples Site: AwayToGarden.com Two sites in her Multisite Network AwaytoGarden.com AwayToGarden.com/book
  • 38. Recommended Multisite Plugins Domain Mapping • Map a top-level domain (example.com) to any site in your network • Allow site admins control over mapped domains http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/
  • 39. Recommended Multisite Plugins Sitewide Tags • Creates a /tags site in your network • All posts created on your site are copied to the /tags site • Makes aggregating content in Multisite very easy! http://wordpress.org/extend/plugins/wordpress-mu-sitewide-tags/
  • 40. Recommended Multisite Plugins New Blog Defaults • Set defaults used for all new sites created in your network • Can delete default content like Hello World post, comment, etc • Can auto-add users to all new sites created by ID http://wordpress.org/extend/plugins/wpmu-new-blog-defaults/
  • 41. Recommended Multisite Plugins WP Multisite Replicator • Duplicates a site to a new site in your network • Copies widgets, theme, and plugin settings • Copies all content http://wpebooks.com/replicator/
  • 42. Recommended Multisite Plugins Networks+ • Can create a network of networks • Nested subdomains and top-level domains with their own child sites http://wpebooks.com/networks/
  • 43. Recommended Multisite Plugins WP Multisite Replicator http://wpebooks.com/networks/
  • 44. Multisite Resources  Official Resources › WordPress Core! › http://codex.wordpress.org/Create_A_Network › http://wordpress.org/support/forum/multisite › http://codex.wordpress.org/Debugging_a_WordPress_Network › http://codex.wordpress.org/Migrating_Multiple_Blogs_into_Word Press_3.0_Multisite  Multisite Websites & Articles › http://wpebooks.com/ › http://wpcandy.com/presents/an-introduction-to-wordpress- multisite › http://wpmututorials.com/ › http://wpmu.org/
  • 45. Contact Brad Williams brad@webdevstudios.com Blog: strangework.com Twitter: @williamsba IRC: WDS-Brad http://www.slideshare.net/williamsba
  • 46. Win a copy of Professional WordPress Plugin Development! Tweet: @williamsba WordPress Multisite is NOT scary! #wcsd