Skip to content

WP-CLI

Blaze includes WP-CLI out of the box — no separate installation needed. Use it to manage plugins, themes, users, databases, and more from an interactive terminal inside the app.

  1. Open a site from the sidebar
  2. Click the “Terminal” tab in the site detail view
  3. Type any WP-CLI command and press Enter

The terminal automatically uses the correct PHP version configured for your site.

Terminal window
wp plugin list
wp plugin install woocommerce --activate
wp plugin deactivate akismet
wp plugin update --all
Terminal window
wp theme list
wp theme install astra --activate
wp theme activate twentytwentyfour
Terminal window
wp user list
wp user create editor editor@example.com --role=editor
wp user update 1 --user_pass=newpassword
Terminal window
wp db export backup.sql
wp db import backup.sql
wp search-replace 'old-domain.com' 'new-domain.com'
Terminal window
wp core version
wp core update
wp option get siteurl
wp option update blogname "My Site"

Blaze sets the WP-CLI memory limit to 1 GB by default, so large operations like imports and search-replace work without running out of memory.