auto_update_{$type}

過濾鉤子
apply_filters( "auto_update_{$type}", $update, $item )
引數
  • (bool|null) $update Whether to update. The value of null is internally used to detect whether nothing has hooked into this filter.
    Required:
  • (object) $item The update offer.
    Required:
定義位置
相關勾子
pre_auto_updatedefault_template_typesauto_core_update_emailwp_update_siteautomatic_updates_complete
相關方法
wp_update_sitewp_update_termwp_update_themecore_update_footerwp_is_auto_update_enabled_for_typewp_update_themes
引入
5.5.0
棄用
-

auto_update_{$type}是一個過濾鉤子,允許你控制是否應該自動執行一個特定型別的更新(如核心更新、外掛更新或主題更新)。該鉤子接收一個表示是否應該自動執行更新的布林值,並在需要時返回一個修改值。

過濾是否自動更新核心、一個外掛、一個主題或一種語言。

鉤子名稱的動態部分,$type,指的是被檢查的更新型別。

可能的鉤子名稱包括。

  • auto_update_core
  • auto_update_plugin
  • auto_update_theme
  • auto_update_translation

自從WordPress 3.7以來,核心的次要版本和開發版本以及翻譯都是預設自動更新的。在WordPress 5.6或更高版本上的新安裝也會預設自動更新主要版本。從5.6開始,老網站可以選擇加入主要版本的自動更新,以及外掛和主題的自動更新。

參見{@see ‘allow_dev_auto_core_updates’}, {@see ‘allow_minor_auto_core_updates’}, and {@see ‘allow_major_auto_core_updates’}過濾器,以獲得更直接的方式來調整核心更新。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$update = apply_filters( "auto_update_{$type}", $update, $item );
$update = apply_filters( "auto_update_{$type}", $update, $item );
$update = apply_filters( "auto_update_{$type}", $update, $item );

常見問題

FAQs
檢視更多 >