plugin-icon

WP Fragment Cache

作者:mariuspass·
Improve website performance by caching individual page fragments (widgets, menus output and long loops).
版本
1.0.4
活跃安装
10
最后更新
Jun 18, 2014

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.

Example usage:

<?php if ( ! WP_Fragment_Cache::output( $wp_query_or_blockname, $duration ) ): ?> //content to be cached <?php WP_Fragment_Cache::store(); ?> <?php endif; ?>

Parameters:

$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).

Advanced usage:

See the wiki pages on GitHub

免费使用Business套餐
通过安装,您同意 WordPress.com 服务条款第三方插件条款
目前已测试版本
WordPress 3.9.40
这个插件是可用的下载,适用于您的站点。