This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ## this script resets Git Updater cache and clears update transients | |
| ## useful when themes or plugins aren’t detecting available updates | |
| ## delete internal metadata cache | |
| wp option delete git_updater | |
| ## delete all transients including theme/plugin update checks | |
| wp transient delete --all |
OlderNewer