# gutenberg/23.7.2/build/build.php

Gutenberg, version 23.7.2. 44 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/23.7.2/code/build/build.php
- Raw: https://pluginprobe.com/plugins/gutenberg/23.7.2/raw/build/build.php
- Modified: 2026-05-20T15:49:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gutenberg/23.7.2/code/build/build.php#L10-L20`.

```php
<?php
/**
 * Main entry point for auto-generated asset registration.
 * Do not edit this file manually.
 *
 * @package gutenberg
 */

// Load script module registration.
$modules_file = __DIR__ . '/modules.php';
if ( file_exists( $modules_file ) ) {
	require_once $modules_file;
}

// Load script registration.
$scripts_file = __DIR__ . '/scripts.php';
if ( file_exists( $scripts_file ) ) {
	require_once $scripts_file;
}

// Load style registration.
$styles_file = __DIR__ . '/styles.php';
if ( file_exists( $styles_file ) ) {
	require_once $styles_file;
}

// Load routes registration.
$routes_file = __DIR__ . '/routes.php';
if ( file_exists( $routes_file ) ) {
	require_once $routes_file;
}

// Load widgets registration.
$widgets_file = __DIR__ . '/widgets.php';
if ( file_exists( $widgets_file ) ) {
	require_once $widgets_file;
}

// Load pages registration.
$pages_file = __DIR__ . '/pages.php';
if ( file_exists( $pages_file ) ) {
	require_once $pages_file;
}

```
