管理外掛

獲取外掛列表

$ wp plugin list 

列出網站上的活動外掛。

$ wp plugin list --status=active --format=json

列出網路中每個站點的外掛。

$ wp site list --field=url | xargs -I % wp plugin list --url=%

啟用外掛

$ wp plugin activate hello-dolly

停用外掛

$ wp plugin deactivate hello-dolly

刪除外掛

$ wp plugin delete hello-dolly

從 wordpress.org 安裝最新版本並啟用

$ wp plugin install bbpress --activate