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.
Using the Terminal
Section titled “Using the Terminal”- Open a site from the sidebar
- Start the site — the WP-CLI terminal requires the site to be running (MariaDB must be active for most commands)
- Click the “WP CLI” tab in the site detail view
- Type any WP-CLI command and press Enter
The terminal automatically uses the correct PHP version configured for your site. Output auto-scrolls as new results appear.
Common Commands Guide
Section titled “Common Commands Guide”The terminal includes a built-in Common Commands panel with clickable shortcuts for frequently used commands. Click any command chip to populate the input field. You can dismiss the panel with the X button and bring it back by clicking the book icon next to the input field.
Common Commands
Section titled “Common Commands”Plugins
Section titled “Plugins”wp plugin listwp plugin install woocommerce --activatewp plugin deactivate akismetwp plugin update --allThemes
Section titled “Themes”wp theme listwp theme install astra --activatewp theme activate twentytwentyfourwp user listwp user update 1 --user_pass=newpasswordDatabase
Section titled “Database”wp db export backup.sqlwp db import backup.sqlwp search-replace 'old-domain.com' 'new-domain.com'WordPress Core
Section titled “WordPress Core”wp core versionwp core updatewp option get siteurlwp option update blogname "My Site"Memory Limit
Section titled “Memory Limit”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.