plugin_auto_update_setting_html

过滤钩子
apply_filters( 'plugin_auto_update_setting_html', $html, $plugin_file, $plugin_data )
参数
  • (string) $html The HTML of the plugin's auto-update column content, including toggle auto-update action links and time to next update.
    Required:
  • (string) $plugin_file Path to the plugin file relative to the plugins directory.
    Required:
  • (array) $plugin_data An array of plugin data. See get_plugin_data() and the {@see 'plugin_row_meta'} filter for the list of possible values.
    Required:
定义位置
相关勾子
theme_auto_update_setting_htmlplugin_auto_update_debug_stringplugins_auto_update_enabledtheme_auto_update_setting_templateauto_plugin_update_send_email
相关方法
wp_theme_auto_update_setting_templatecore_auto_updates_settingswp_is_auto_update_forced_for_itemwp_plugin_update_rowsget_plugin_updateswp_get_auto_update_message
引入
5.5.0
弃用
-

plugin_auto_update_setting_html 是一个过滤钩子,允许开发者在WordPress管理区的”插件”屏幕上自定义自动更新设置的HTML输出。这个钩子可以用来改变自动更新设置的显示方式,比如添加额外的信息或者改变设置的布局。

过滤插件列表表中每个插件的自动更新设置的HTML。

echo apply_filters( 'plugin_auto_update_setting_html', $html, $plugin_file, $plugin_data );

常见问题

FAQs
查看更多 >