Этот плагин не тестировался с последними 3 основными выпусками WordPress. Скорее всего, он уже не поддерживается и может быть несовместим с текущими версиями WordPress.

Widget Output Cache

Описание

Использует буферизацию PHP, чтобы извлечь выходные данные виджета и сохраняет их, после чего просто выводит кеш, не делая всяких тяжелых запроов. Он также добавляет флажок к элементам управления виджета, чтобы исключить его из кэширования.

Это быстрое решение для тяжелых плагинов, которые анализируют RSS-каналы или вызывают удаленные коннекты на URL при каждой загрузке страницы.

Установка

Установите его из официального репозитория WordPress или воспользуйтесь поиском плагинов на панели управления.

Часто задаваемые вопросы

Найдено в разделе FAQ.

Отзывы

03.09.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; }
03.09.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.
03.09.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?
03.11.2016 1 ответ
If you have widgets with pics or animation, this plugin allows everything in it to be cached. Widgets do not cache normally. This even adds a little check box to not cache certain ones of you run things in there that constantly change If you do change something and just need to clear the cache just for the widget to see what it looks like. Just hit the widget save button and the changes take place. So if you have a CDN local or off site set up, the widgets will now be included in that cache Sped up my webpage big time because I use widgets that download the latest posts from 5 Face Book pages on the same subject but different information. Because that's all cached now and does not change for 24 hours (how I have it set up in the FB feed through another plugin) the FB information is cached and loads quickly instead of waiting for FB servers to send it..
Посмотреть все 7 отзывов

Участники и разработчики

«Widget Output Cache» — проект с открытым исходным кодом. В развитие плагина внесли свой вклад следующие участники:

Участники

Перевести «Widget Output Cache» на ваш язык.

Заинтересованы в разработке?

Посмотрите код, проверьте SVN репозиторий, или подпишитесь на журнал разработки по RSS.

Журнал изменений

0.5.2

  • Протестировано на WordPress 4.5.2.

0.5.1

  • Fixed transient name generation issue.

0.5

  • Remove menu cache due to «active» menu item bug.
  • Разрешить отдельным виджетам быть исключенными из кэширования.

0.4.4

  • Honor widgets being hidden using the widget_display_callback filter.

0.4.3

  • Add cache versioning for simple invalidation.

0.4.2

  • Сохранять кэш меню, только если WordPress поддерживает pre_wp_nav_menu.

0.4

  • Добавить поддержку для кэширования меню.

0.1

  • Первый выпуск.

Upgrade Notice