Multisite Wordpress Flashcards
Q: What is WordPress Multisite?
A: WordPress Multisite is a feature that allows you to run multiple websites from a single WordPress installation.
Q: When should you use WordPress Multisite?
A: When managing multiple websites that share similar resources, themes, plugins, or a user base, such as networks for schools, blogs, or companies.
Q: What is the difference between a single WordPress site and a Multisite network?
A: A single WordPress site manages only one website, while a Multisite network allows multiple websites to operate under one WordPress installation.
Q: What is the primary benefit of using Multisite?
A: Centralized management of multiple websites, including shared themes, plugins, and user roles.
Q: How do you enable Multisite in WordPress?
A: Add define(‘WP_ALLOW_MULTISITE’, true); to the wp-config.php file, then use the WordPress dashboard to configure the network.
Q: What are the two types of Multisite setups?
A: Subdomain (site1.example.com) and subdirectory (example.com/site1).
Q: What are the prerequisites for setting up a WordPress Multisite?
A: A hosting environment that supports wildcard subdomains, proper server configuration, and access to the wp-config.php and .htaccess files.
Q: What role does the .htaccess file play in Multisite?
A: It handles the URL rewriting required for subdomain or subdirectory setups.
Q: What is the role of a Super Admin in Multisite?
A: A Super Admin has top-level control over the entire network, including site creation, plugin management, and user permissions.
Q: How do you create a new site in a Multisite network?
A: Go to My Sites > Network Admin > Sites > Add New, then enter the site details.
Q: Can individual sites in a Multisite network use different themes?
A: Yes, Super Admins can enable specific themes for individual sites.
Q: Can plugins be managed individually on each site in Multisite?
A: No, plugins are installed at the network level but can be activated on a per-site basis.
Q: What is a wildcard subdomain, and why is it important for Multisite?
A: A wildcard subdomain (*.example.com) allows unlimited subdomains to be created dynamically, which is necessary for subdomain-based networks.
Q: What plugin can you use for domain mapping in Multisite?
A: Plugins like “WP Multisite Domain Mapping” allow individual sites in a network to use custom domains.
Q: What is the difference between subdomains and subdirectories in Multisite?
A: Subdomains use a domain format like site1.example.com, while subdirectories use a format like example.com/site1.
Q: Can you switch from subdomain to subdirectory in a Multisite setup?
A: It’s technically possible but not recommended, as it requires significant changes to the database and server configuration.