>
Download This Plugin | |
Download Elegant Themes | |
Name | WP Fragment Cache |
Version | 1.0.4 |
Author | Marius Dobre |
Rating | 0 |
Last updated | 2014-06-18 08:00:00 |
Downloads |
228
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
WP Fragment Cache plugin added 14 bytes of resources to the Home page and 6 bytes of resources to the sample Post page.
WP Fragment Cache plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! WP Fragment Cache plugin ads no tables to your Wordpress blog database.This plugin requires PHP version 5.3.6 or greater and can't be activated without a persistent backend for the WordPress Object Cache.
Adds ability to cache particular sections of your site. This plugin is for people who can't use a full page cache or for sites with lots of pages and with frequent changes. It can cache entire loops with the WP_Query(bypassing the database queries) or only the html output of the loop and if the query results has changed(comment added, post was edited, postmeta has changed ...) the cache will be invalidated and regenerated.
<?php if ( ! WP_Fragment_Cache::output( $wp_query_or_blockname, $duration ) ): ?>
//content to be cached
<?php WP_Fragment_Cache::store(); ?>
<?php endif; ?>
$wp_query_or_blockname (mixed/string) (optional) a WP_Query(WP_Comment_Query) result or a string. Default: the file and the line where the call was initiated(e.g. widgets/most-commented.php:18).
$duration (int/string) (optional) Defines how many seconds to keep the cache for. If you pass 0 the cache will not expire. If you pass the string "only_today" the cache will expire at the end of the current day. You can use WordPress Time Constants. Default: 86400 (one day).
See the wiki pages on GitHub