Thanks for your question.
Quick Cache uses your Sitemap, only in conjunction with it's Auto-Cache Engine. So you can use a Sitemap to tell Quick Cache which URLs you want cached automatically, but this does NOT determine "overall", which URLs are allowed to be cached. That capability is not provided by the Quick Cache plugin.
However, there are several filters you can apply, see: Quick Cache -> General Options. You might give those a try. See if you can come up with a creative way to exclude anything buts Posts. You could also use a special PHP Constant inside your WordPress® theme. This will disable Quick Cache on everything, except Posts. You can put this inside the functions.php file for your WordPress® theme.
- Code: Select all
<?php if(!is_single() || is_page())
define("QUICK_CACHE_ALLOWED", false);
?>