I am creating an audit script and noticed that you cannot use more than one status with the wp theme list command.
Here is an example on a live site:
Output
+----------------+--------+--------+---------+
| name | status | update | version |
+----------------+--------+--------+---------+
| woodmart-child | active | none | 1.0.0 |
| woodmart | parent | none | 4.4.0 |
+----------------+--------+--------+---------+
I can filter by one status
wp theme list --status=active
Output
+----------------+--------+--------+---------+
| name | status | update | version |
+----------------+--------+--------+---------+
| woodmart-child | active | none | 1.0.0 |
+----------------+--------+--------+---------+
But if I try to get both the active and parent status in one command it fails
wp theme list --status=active,parent
Output
+------+--------+--------+---------+
| name | status | update | version |
+------+--------+--------+---------+
+------+--------+--------+---------+
I am creating an audit script and noticed that you cannot use more than one status with the wp theme list command.
Here is an example on a live site:
Output
I can filter by one status
Output
But if I try to get both the active and parent status in one command it fails
Output