Schedule a Free Consultation

Multisite Create Page on All Sites

Read Article

Have you ever worked on a multisite with 60+ sites?

For projects of this size the deployment is a challenge in itself because you might need to:

  • regenerate the thumbnails on all the 60 sites; Of course, doing it manually is a no go
  • configure a certain page as homepage on all 60 sites
  • if you are working with a preset theme (as we were asked to do), how do you configure 5-10 theme settings on all 60 sites in a humanly reasonable way?
  • create a page with a given slug and template on all sites in a multisite install

Recently we had a project of this magnitude for TiE Global. To streamline the deployment, we wrote a few plugins that handle the deployment automation task for us. And because we’ve received so much from the open source community, we are paying it forward by publishing one of our plugins.

WPRiders Multisite Create pages plugin handles the following tasks:

  1. Create/update a page on all sites of a multisite install
  2. Optionally, set page slug
  3. Optionally, set the template of the page
  4. Optionally, set page as home
  5. Optionally, set page as blog

Multisite install add page and configure options

In case you are interested in how this plugin works, here are a few snippets together with technical explanations.

Create/update a page on all sites of a multisite install and set the slug

The create/update page script might timeout due to large number of websites. To avoid using php “set_time_limit” or other server settings we use ajax to execute each site update on a separate request:

Optionally, set the template of the page on all sites of a multisite

After the page has been created, one might want to actually set a template for that page across all the sites. Here’s how we do it. The code is adapted from the WordPress wp-admin back-end page editor. The same snippet sets the page as a blog page on all sites:

Full plugin code

The full source code of the working plugin can be downloaded from here.

Enjoy 🙂

 

Navigate to

Check some other articles we wrote

How to Launch a Job Website Using WordPress [Complete Guide]
We’ve All Been There… Even You I don’t know about you guys, but I was very excited about my first job. I was finishing my freshman year of college and I wanted to work for the summer, so I started job hunting quite early on. And if there’s one thing I noticed, it’s that finding […]
How To Build Long-Lasting Relationships With Your Clients When You Have A WordPress Website
For any business, losing customers can really hurt your bottom line. That’s why smart companies know customer retention is just as important as acquisition. In fact, according to Neil Patel, “Acquiring a new customer can cost up to 7 times more than selling to an existing customer.” As a business owner or marketing decision-maker, you […]
Add html comments using newly created user role
Add html comments using newly created user role
I was recently working on a piece of code that will: create as special user role allow that user role to insert HTML comments on posts (specifically we needed images and links) from wp-admin If I was commenting like admin, all was good – the comment with image was getting published. But if instead I […]