I've been trying to improve my caching strategies in the themes I build, but I'm having trouble understanding how "Enable dynamic caching" works in WP Super Cache. There's very little information on this through searches, and what I have been able to find has been extremely technical, targeted towards one non-cached region, or otherwise not helpful.
So far what I've been able to discern is that there are global, secret, tags that get replaced with the dynamic content when a page loads. What I can't figure out, though, is how to set up multiple of these. As far as I'm aware, you can only use define("DYNAMIC_OUTPUT_BUFFER_TAG", "")
once, otherwise the value will be overwritten by the later declarations.
I'm looking for a guide on how to serve simple dynamic elements to different areas of a page.
For example, if I had the following requirements:
- Display the current time in the header via
current_time("c")
- Display the current users IP address in the footer via
$_SERVER["REMOTE_ADDR"]
How can this be achieved while maintaining caching for the rest of the page?
Related Links:
- /2013/10/21/shiny-new-dynamic-content-wp-super-cache/
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745370018a4624754.html
评论列表(0条)