WP-CLI: Every action, scriptable.
The command line for WordPress. No browser required.

Scriptable by design
વર્ડપ્રેસ એડમિનમાં તમે જે કંઈ પણ કરી શકો છો, તે તમે ટર્મિનલ પરથી કરી શકો છો. પ્લગઇન્સ ઇન્સ્ટોલ અને અપડેટ કરો, સામગ્રી આયાત કરો, વપરાશકર્તાઓ બનાવો, ડેટાબેઝમાં શોધ-રિપ્લેસ ચલાવો, કી ફેરવો, મલ્ટીસાઇટ નેટવર્ક્સનું સંચાલન કરો. તેમાંથી કોઈપણને સ્ક્રિપ્ટ, ક્રોન જોબ અથવા ડિપ્લોય સ્ટેપમાં બંડલ કરો. WP-CLI વર્ડપ્રેસને એવી વસ્તુમાં ફેરવે છે જેને તમે સ્વચાલિત કરી શકો છો.

wp plugin
Install, activate, update

wp theme
થીમ્સ અને ચાઇલ્ડ થીમ્સ મેનેજ કરો

wp db
Export, import, search-replace

wp user
પાસવર્ડ બનાવો, અપડેટ કરો અને ફરીથી સેટ કરો

wp post
Bulk create, edit, delete content

wp core
Install, update, verify WordPress

wp site
Manage multisite networks

wp cron
Inspect and run scheduled events
કંઈપણ સ્વચાલિત કરો
WP-CLI fits wherever you script. Bake it into a deploy pipeline to migrate a database between environments. Wire it into a GitHub Action to verify core integrity on every pull request. Run it from cron to rotate keys, prune transients, or regenerate thumbnails at 3 a.m.
wp db export backup.sql
wp search-replace 'https://staging.example.com' 'https://example.com' --all-tables
wp cache flush
WP_CLI::add_command( 'hello', function () {
WP_CLI::success( 'Hello from WP-CLI!' );
} );
તેને લંબાવો
WP-CLI is built to be extended. Write a custom command in a few lines of PHP and ship it as a plugin — or browse the community package index for one that already does what you need.
Maintained by the WordPress community
WP-CLI has shipped continuously since 2011, maintained by volunteers from across the WordPress ecosystem. Every release ships under public governance, and contributions take many forms — triage, docs, translation, command authorship, tests.
Built for what's next
The future of web management is autonomous, and WP-CLI is designed to lead the way. Beyond serving as a powerful interface for developers, it provides the standardized, command-driven architecture that AI agents and LLMs need to interact reliably with WordPress. By leveraging the Abilities API, AI connectors, and Model Context Protocol (MCP) support, WP-CLI turns WordPress into a fully agent-ready environment. Whether you are automating routine maintenance or building complex agentic workflows, WP-CLI provides the stable, programmable foundation required for the next generation of intelligence.
