FAQ

Frequently asked questions

Something missing? Send us a message.

General

What is Loopress?

Loopress is a developer toolbox for WordPress. It ships as a CLI and a WordPress plugin that work together to bring version control, reproducible environments, and modern workflows to WordPress projects.

Is it free?

The CLI and the WordPress plugin are open source and free. The Loopress console (console.loopress.dev) is free to use during the alpha. Paid Pro and Agency tiers are coming, pricing will be announced separately.

Who is Loopress for?

Developers and agencies who build and maintain WordPress sites and want to manage their projects like modern applications: Git, lockfiles, and reproducible installs.

Comparisons

How is Loopress different from Roots Bedrock?

Bedrock restructures your project (code into web/app, WordPress core into web/wp) and its recommended deploy path, Trellis, needs SSH. It's a solid choice for teams that can commit to that structure upfront. Loopress takes a different trade: no restructuring, works on the stock wp-content layout your host already runs, no SSH required.

How is Loopress different from staging/DB-sync plugins like WP Staging or Duplicator?

Those tools move a site as a point-in-time snapshot: you pick what to include by hand and push it as one operation, with no diff against the last sync. Loopress tracks changes continuously and pushes only what changed, the same way Git does for code.

CLI

What does the CLI do?

The CLI lets you pull snippets from WordPress as local .php files, push them back after editing, and manage plugin versions through a loopress.json lockfile, similar to how npm manages packages.

How do I authenticate?

Loopress uses WordPress application passwords. No SSH access required. You configure a project once with lps project config, which by default opens your browser and creates the application password for you automatically (manual entry is available as a fallback). Credentials are stored locally on your machine, in your OS's standard config directory.

Can I manage multiple projects or environments?

Yes. The CLI supports multiple named projects, each with multiple environments (local, staging, production). You switch between them with lps project switch.

Does it work with any WordPress installation?

It works with any self-hosted WordPress site that has the Loopress plugin installed and the REST API enabled.

Snippets

Which snippet plugins are supported?

Code Snippets and WPCode are both supported. Loopress detects whichever one is active on the site, no configuration needed.

What happens when I push a snippet?

Loopress reads the metadata from the .json sidecar file (id, name, tags, active status) and creates or updates the corresponding snippet in WordPress via the REST API.

Can I create new snippets from the CLI?

Yes. Any snippet file without an id in its .json sidecar will be created as a new snippet. The generated id is written back into the .json metadata file after creation.

Can I share the same snippet across multiple sites?

lps snippet publish uploads a project's snippets to your Loopress account, separately from any single WordPress site, so they can be deployed to other projects from the console. Requires being logged in (lps login) and the project synced (lps project sync).

Plugin management

How does the plugin lockfile work?

You declare plugin slugs and versions in loopress.json under a plugins key. Running lps plugin push installs missing plugins, activates them, and flags version mismatches for review.

Where do plugins come from?

From the official WordPress.org plugin directory. Loopress downloads and installs any plugin available at wordpress.org/plugins.

What if a plugin is already installed but inactive?

Loopress will activate it automatically as part of lps plugin push.

WordPress plugin

What does the WordPress plugin do?

It exposes a REST API that the CLI communicates with, and provides an admin panel to manage Composer dependencies directly from the WordPress dashboard. No terminal or SSH access needed.

Is there a production lock?

Yes. You can lock a site to prevent package installs or removals, either from the admin panel or by setting LOOPRESS_PRODUCTION_LOCK in wp-config.php.

Does it support Composer?

Yes. The WordPress plugin runs Composer via PHP and installs packages from Packagist into wp-content/loopress/. The autoloader is registered automatically.