automatic_updates_is_vcs_checkout

过滤钩子
apply_filters( 'automatic_updates_is_vcs_checkout', $checkout, $context )
参数
  • (bool) $checkout Whether a VCS checkout was discovered at `$context` or ABSPATH, or anywhere higher.
    Required:
  • (string) $context The filesystem context (a path) against which filesystem status should be checked.
    Required:
定义位置
相关勾子
automatic_updates_completeautomatic_updater_disabledautomatic_updates_debug_emailautomatic_updates_send_debug_emailthemes_update_check_locales
相关方法
wp_authenticate_spam_checkupdate_posts_count_update_post_term_countcore_auto_updates_settingswp_maybe_update_user_countsupdate_post_cache
引入
3.7.0
弃用
-

automatic_updates_is_vcs_checkout 是一个过滤钩子,允许你控制自动更新系统是否认为该网站是一个版本控制签出。该钩子接收一个布尔值,表示该网站是否是版本控制签出,如果需要的话,返回一个修改值。

过滤自动更新程序是否应考虑一个文件系统位置可能由版本控制系统管理。

return apply_filters( 'automatic_updates_is_vcs_checkout', $checkout, $context );

常见问题

FAQs
查看更多 >