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
- Click the “Terminal” 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.
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 create editor editor@example.com --role=editorwp 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.