Widget Output Cache
Widget Output Cache
Description
Use PHP output buffering to extract widget output and store it into WordPress transients for faster retrieval. It also adds a checkbox to widget controls to exclude it from being cached.
It is a quick fix for bad behaving plugins that parse RSS feeds or call remote URLs on every page load.
Installation
Install it from the official WordPress repository or use the plugin search in your WordPress dashboard.
Faq
None.
Reviews
Nice! Super works with other cache plugins what not have integrated this cache!
By 18TommyBoy on December 5, 2023
LiteSpeed has not integrated this yet, superb thing to it!
Extra speed boost
By Antony Booker (antonynz) on September 3, 2016
Great plugin. Does it what is says and can really help give that extra speed boost. It even refreshes the cache when a widget is saved.
On first installation I would recommend increasing the cache time from the default 12 minutes, using the below filter:
add_filter( 'widget_output_cache_ttl', 'widget_cache_custom_ttl', 10, 2 );
function widget_cache_custom_ttl( $ttl ) {
$ttl = 3600 * 24; // 24 hours
return $ttl;
}
This increased our support sites performance
By Skylightit on September 3, 2016
We use various plugins to produce our support site with 200+ pages, widgets that pull information from our sub sites at support.skylightit.com. We are using caching, varnish and various server side and WP plugins. Our issue was that some of the custom widgets were impacting the sites performance and this just improved it. So that you to the developers for awesome work.
good plugin
By menesme on September 3, 2016
This is good plugin.
Simple and easy to use although improved performance in my sites.
But it has not been updated for a year.
Is update yet?
Works great.
By ikester7579 on November 3, 2016
Works fine
By General Seed (AutoCultivo) on February 7, 2017
Changelog
0.5.2
- Tested with WordPress 4.5.2.
0.5.1
- Fixed transient name generation issue.
0.5
- Remove menu cache due to “active” menu item bug.
- Allow individual widgets to be excluded from being cached.
0.4.4
- Honor widgets being hidden using the
widget_display_callbackfilter.
0.4.3
- Add cache versioning for simple invalidation.
0.4.2
- Store menu cache only if WordPress supports
pre_wp_nav_menu.
0.4
- Add support for menu output caching.
0.1
- Initial release.