Filters the text string of the auto-updates setting for each theme in the Site Health debug data.
$auto_updates_stringstring$themeWP_Theme$enabledboolwp-admin/includes/class-wp-debug-data.php:1261WP_Debug_Data::get_wp_active_theme()wp-admin/includes/class-wp-debug-data.php:1372WP_Debug_Data::get_wp_parent_theme()wp-admin/includes/class-wp-debug-data.php:1494WP_Debug_Data::get_wp_themes_inactive() * @since 5.5.0 * * @param string $auto_updates_string The string output for the auto-updates column. * @param WP_Theme $theme An object of theme data. * @param bool $enabled Whether auto-updates are enabled for this item. */ $auto_updates_string = apply_filters( 'theme_auto_update_debug_string', $auto_updates_string, $theme, $enabled ); $theme_version_string .= ' | ' . $auto_updates_string; $theme_version_string_debug .= ', ' . $auto_updates_string; } $fields[ sanitize_text_field( $theme->name ) ] = array(Introduced in 5.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.