Skip to content

Instantly share code, notes, and snippets.

@initcron
Created December 4, 2024 16:22
Show Gist options
  • Save initcron/b69bc416f7d55898cb63553f1c465697 to your computer and use it in GitHub Desktop.
Save initcron/b69bc416f7d55898cb63553f1c465697 to your computer and use it in GitHub Desktop.
Cleanup WP Cache
#!/bin/bash
sudo su
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
chmod +x wp-cli.phar
sudo mv wp-cli.phar /usr/local/bin/wp
wp transient delete --all --path=/srv/www/wordpress --allow-root
wp option get siteurl --path=/srv/www/wordpress --allow-root
wp option get home --path=/srv/www/wordpress --allow-root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment