WP-CLI: প্ৰতিটো কাম, স্ক্ৰিপ্ট কৰিব পাৰি।
The command line for WordPress. No browser required.

স্ক্ৰিপ্ট কৰিব পৰাকৈ ৰূপাংকিত
Anything you can do in the WordPress admin, you can do from the terminal. Install and update plugins, import content, create users, run search-replace across a database, rotate keys, manage multisite networks. Bundle any of it into a script, a cron job, or a deploy step. WP-CLI turns WordPress into something you can automate.

wp plugin
ইনষ্টল, সক্ৰিয়, আপডে’ট কৰক

wp theme
থীম আৰু উপ-থীমবোৰ পৰিচালনা কৰক

wp db
ৰপ্তানি কৰক, আমদানি কৰক, বিচাৰি সলনি কৰক।

wp user
পাছৱৰ্ডৰ সৃষ্টি, আপডে’ট, ৰিছেট কৰক

wp post
সৰহীয়াকৈ বিষয়বস্তুৰ সৃষ্টি কৰক, সম্পাদনা কৰক, মচক

wp core
WordPress ইনষ্টল, আপডে’ট, সত্যাপন কৰক

wp site
বহু-ছাইটৰ নেটৱৰ্কবোৰ পৰিচালনা কৰক

wp cron
সময়সূচিত ইভেণ্টবোৰ ইনস্পেক্ট কৰি চলাওক
যিকোনো বস্তু স্বয়ংচালিত কৰক
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.
WordPress সমাজৰ দ্বাৰা ৰক্ষণাবেক্ষণ কৰা হয়
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.
অনাগত দিনবোৰৰ বাবে প্ৰস্তুত
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.
