We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bca0905 + 025bd1a commit e4fc227Copy full SHA for e4fc227
2 files changed
README.md
@@ -497,6 +497,10 @@ the transient cache skips the database and simply wraps the WP Object Cache.
497
$ wp transient delete --all
498
Success: 14 transients deleted from the database.
499
500
+ # Delete all site transients.
501
+ $ wp transient delete --all --network
502
+ Success: 2 transients deleted from the database.
503
+
504
505
506
### wp transient delete
src/Transient_Command.php
@@ -36,6 +36,10 @@
36
* # Delete all transients.
37
* $ wp transient delete --all
38
* Success: 14 transients deleted from the database.
39
+ *
40
+ * # Delete all site transients.
41
+ * $ wp transient delete --all --network
42
+ * Success: 2 transients deleted from the database.
43
*/
44
class Transient_Command extends WP_CLI_Command {
45
0 commit comments