theme_auto_update_debug_string

theme_auto_update_debug_string

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('theme_auto_update_debug_string') is found 3 times:

  • /wp-admin/includes/class-wp-debug-data.php line 1200
    				$auto_updates_string = __( 'Disabled' );
    			}
    
    			/** This filter is documented in wp-admin/includes/class-wp-debug-data.php */
    			$auto_updates_string = apply_filters( 'theme_auto_update_debug_string', $auto_updates_string, $active_theme, $enabled );
    
    			$info['wp-active-theme']['fields']['auto_update'] = array(
    				'label' => __( 'Auto-updates' ),
    				'value' => $auto_updates_string,
    				'debug' => $auto_updates_string,
    			);
    
  • /wp-admin/includes/class-wp-debug-data.php line 1286
    					$parent_theme_auto_update_string = __( 'Disabled' );
    				}
    
    				/** This filter is documented in wp-admin/includes/class-wp-debug-data.php */
    				$parent_theme_auto_update_string = apply_filters( 'theme_auto_update_debug_string', $auto_updates_string, $parent_theme, $enabled );
    
    				$info['wp-parent-theme']['fields']['auto_update'] = array(
    					'label' => __( 'Auto-update' ),
    					'value' => $parent_theme_auto_update_string,
    					'debug' => $parent_theme_auto_update_string,
    				);
    
  • /wp-admin/includes/class-wp-debug-data.php line 1382
    				 * @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;
    			}
    
    			$info['wp-themes-inactive']['fields'][ sanitize_text_field( $theme->name ) ] = array(