Skip to content
  1. Blog

Twelve-Factor WordPress App #12: Admin Processes

Scott Walkinshaw Scott Walkinshaw on

Factor #12: Admin processes

Run admin/management tasks as one-off processes

The process formation is the array of processes that are used to do the app’s regular business (such as handling web requests) as it runs. Separately, developers will often wish to do one-off administrative or maintenance tasks for the app, such as:

  • Running database migrations (e.g. manage.py syncdb in Django, rake db:migrate in Rails).
  • Running a console (also known as a REPL shell) to run arbitrary code or inspect the app’s models against the live database. Most languages provide a REPL by running the interpreter without any arguments (e.g. python or erl) or in some cases have a separate command (e.g. irb for Ruby, rails console for Rails).
  • Running one-time scripts committed into the app’s repo (e.g. php scripts/fix_bad_records.php).

This should be fairly self-explanatory but the key point is to learn to separate out admin/management tasks as scripts instead of trying to incorporate into WordPress (like an admin page for example).

Example: you need to do a search and replace in all posts to update a URL.

Since this is a one-time process it might make sense just to do it directly through the console, or right in MySQL. But it’s often better to write a script that will be committed to your codebase. This gives you a history of them and it’s easy to copy it for a different task later on.

In Practice

One-off admin processes should be run in an identical environment as the regular long-running processes of the app. They run against a release, using the same code and config as any process run against that release. Admin code must ship with application code to avoid synchronization issues.

One-off processes, REPLs, or admin scripts are made much easier by one tool: WP-CLI.

wp shell provides you with an interactive PHP console:

allows you to evaluate PHP statements and expressions interactively, from within a WordPress environment. This means that you have access to all the functions, classes and globals that you would have access to from inside a WordPress plugin, for example.

The easiest way to write a script that guarantees you’ll have access to your WP environment is to write a custom WP-CLI command. This is the equivalent of a one-off script. Create a /scripts directory in your codebase and keep them all in the same place.

The WP-CLI Wiki offers the basic on creating a custom command. They go through the process for an example command. Running it looks like:

wp example hello --name=Joe foo --verbose bar

Using my above example of updating a URL in all posts, you could even make a generalized command that could be used like:

wp update-post-body --search=old.com --replace=new.com

Turning a WordPress site into a Twelve-Factor App

  1. Codebase
  2. Dependencies
  3. Config
  4. Backing Services
  5. Build, release, run
  6. Processes
  7. Port binding
  8. Concurrency
  9. Disposability
  10. Dev/prod parity
  11. Logs
  12. Admin processes

Want to turn your WordPress site into a Twelve-factor App? Bedrock is a modern WordPress stack to help you get started with the best tools and practices.

About the author

Scott Walkinshaw

Scott Walkinshaw is a full-stack web developer who's trying to drag WordPress into 2024 and help people modernize their development workflow. He lives in Toronto and likes sports almost as much as coding.

Subscribe for updates

Join over 8,000 subscribers on our newsletter to get the latest Roots updates and tips on building better WordPress sites

Looking for WordPress plugin recommendations, the newest modern WordPress projects, and general web development tips and articles?