WP-CLI » Reinstall WordPress Core using WP-CLI

Reinstall WordPress Core using WP-CLI

Here are useful WP-CLI commands that I use when cleaning hacked WordPress websites in order to reinstall WP core, all themes, and plugins from WordPress.org

wp core download --force --skip-content
2023 03 24 10 51 - Reinstall WordPress Core using WP-CLI
wp core download –force –skip-content

💡 NOTE: You need to enable php-zip extension in order to extract the archive using WP-CLI. Also, make sure you enter the folder of your website before reinstalling WordPress.


Reinstall all plugins from WordPress.org

This one-liner will reinstall all free WordPress plugins from WordPress.org

wp plugin install $(wp plugin list --field=name) --force
2023 03 24 10 46 - Reinstall WordPress Core using WP-CLI
wp plugin install $(wp plugin list --field=name) --force

This one-liner will reinstall all free WordPress themes from WordPress.org

wp theme install $(wp theme list --field=name) --force
2023 03 24 10 498 - Reinstall WordPress Core using WP-CLI
wp theme install $(wp theme list –field=name) –force

Was this post helpful?

Leave a Comment

I enjoy constructive responses and professional comments to my posts, and invite anyone to comment or link to my site.

Recommended