How can you develop on a live WordPress installation that is using W3 Total Cache? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question Or to make it easier: you just want to disable the caching in order to see your changes in realtime. Any … Read more

WP script versioning breaks cross-site caching?

I am loading JQuery from the google CDN using the following code: wp_deregister_script(‘jquery’); wp_register_script( ‘jquery’, // handle – WP uses this name to refer to script ‘http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js’, array(), // Array of handles representing scripts that this one depends on. false, // Version number – defaults to false. false // false = put script in header, … Read more

Any reason why wp_cache_set not to work?

Any reason why wp_cache_set not to work? I have spun my wheels trying to figure out why these are not working. Any suggestions? These functions are supposed to help me cache the results to a key/object and then leverage the key/object to display the info. However, they are not storing key/object $related_post_ids = wp_cache_get( ‘related_post_ids’ … Read more

AJAX vs Fragment Caching for W3 Total Cache [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I’m running a WP site with WooCommerce and I want to do some caching. I’m going to exclude the pages such … Read more

How can I reduce the number of database query calls for this custom homepage?

I am working on the design of a blog with the below(just a sample) category hierarchy. PARENT | |————————————————| Food Fashion | | |———————| |———————| European Asian European Asian | | | | |———| |———–| |——–| |——–| Italian French Chinese Japanese Italian French Chinese Japanese On the homepage, my client wants to display the three … Read more