plugin_auto_update_debug_string

过滤钩子
apply_filters( 'plugin_auto_update_debug_string', $auto_updates_string, $plugin_path, $plugin, $enabled )
参数
  • (string) $auto_updates_string The string output for the auto-updates column.
    Required:
  • (string) $plugin_path The path to the plugin file.
    Required:
  • (array) $plugin An array of plugin data.
    Required:
  • (bool) $enabled Whether auto-updates are enabled for this item.
    Required:
定义位置
相关勾子
theme_auto_update_debug_stringplugin_auto_update_setting_htmlplugins_auto_update_enabledautomatic_updates_debug_emailtheme_auto_update_setting_html
相关方法
wp_get_auto_update_messagecore_auto_updates_settingswp_plugin_update_rowwp_plugin_update_rowswp_ajax_update_pluginget_plugin_updates
引入
5.5.0
弃用
-

plugin_auto_update_debug_string 是一个过滤钩子,允许开发者在自动更新过程运行时向输出的调试信息添加额外的信息。这个钩子可以用来提供关于自动更新过程的额外细节,比如正在更新的插件版本。

挂钩名称的动态部分$plugin_file是指插件文件相对于插件目录的路径。

过滤Site Health调试数据中每个插件的自动更新设置的文本字符串。

$auto_updates_string = apply_filters( 'plugin_auto_update_debug_string', $auto_updates_string, $plugin_path, $plugin, $enabled );

常见问题

FAQs
查看更多 >