wp_clean_update_cache()
Видаляє дані про оновлення плагінів, тем і ядра з кешу.
Функція видаляє тимчасові опції та поточний кеш, пов’язаний з ними:
delete_site_transient( 'update_plugins'); delete_site_transient('update_core'); delete_site_transient( 'update_themes');
Хуків немає.
Повертає
null
. Нічого не вертає.
Використання
wp_clean_update_cache();
Приклади
#1 Видалимо кеш оновлень
Цей приклад показує, як видалити кеш оновлень плагінів, тим і ядра:
wp_clean_update_cache();
список змін
З версії 4.1.0 | Введено. |
Код wp_clean_update_cache() wp clean update cache WP 6.0.2
function wp_clean_update_cache() { if ( function_exists( 'wp_clean_plugins_cache' ) ) { wp_clean_plugins_cache(); } else { delete_site_transient( 'update_plugins'); } wp_clean_themes_cache(); delete_site_transient('update_core'); }