【WP-CLI】テーマの削除

wp optionコマンド

WP-CLIでWordPressのテーマの削除をするには、以下のコマンドを実行します。

# 指定したテーマの削除
wp theme delete <theme-name>

# 全テーマの削除
wp theme delete --all --force
WP-CLI

テーマの名前は、以下のコマンドで調べることができます。

wp theme list
+-------------------+----------+--------+---------+----------------+-------------+
| name              | status   | update | version | update_version | auto_update |
+-------------------+----------+--------+---------+----------------+-------------+
| astra             | inactive | none   | 4.7.3   |                | off         |
| hello-elementor   | active   | none   | 3.1.0   |                | off         |
| twentytwentythree | inactive | none   | 1.5     |                | off         |
| twentytwentytwo   | inactive | none   | 1.8     |                | off         |
+-------------------+----------+--------+---------+----------------+-------------+
WP-CLI