Changing the WP CLI cache folder

You could try to change it through the environment variable: WP_CLI_CACHE_DIR as we have it included in the WP_CLI::get_cache() method (src): $dir = getenv( ‘WP_CLI_CACHE_DIR’ ) ? : “$home/.wp-cli/cache”; You can also check out issue #1848 – Use shared cache directory for multiple installs for usage examples. In the WP-CLI Handbook on make.wordpress.org, we have … Read more

What is the “Endurance Cache” feature in my WordPress website?

I noticed this new wordpress version I’m running has a “Endurance Cache” option at the bottom of the “Settings > General” page. That is caching all of the changes I’m doing on css. So whenever I update something the changes don’t reflect on the browser instantaneously. I’m wondering if that’s wordpress native or if I … Read more