# gutenberg/23.3.0/lib/experimental/guidelines/index.php

Gutenberg, version 23.3.0. 62 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/23.3.0/code/lib/experimental/guidelines/index.php
- Raw: https://pluginprobe.com/plugins/gutenberg/23.3.0/raw/lib/experimental/guidelines/index.php
- Modified: 2026-06-03T03:22:02+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.3.0/code/lib/experimental/guidelines/index.php#L10-L20`.

```php
<?php
/**
 * Guidelines experimental feature.
 *
 * @package gutenberg
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

require_once __DIR__ . '/guidelines.php';
require_once __DIR__ . '/class-gutenberg-guidelines-post-type.php';
require_once __DIR__ . '/class-gutenberg-guidelines-rest-controller.php';
require_once __DIR__ . '/class-gutenberg-content-guidelines-revisions-controller.php';
require_once __DIR__ . '/class-gutenberg-content-guidelines-rest-controller.php';

/*
 * Register the guideline post type.
 * The standard /wp/v2/guidelines collection uses the default posts controller.
 */
add_action( 'init', array( 'Gutenberg_Guidelines_Post_Type', 'register' ) );

/*
 * Ensure the post type is registered before any other `rest_api_init` callback
 * runs. `init` normally fires before `rest_api_init`, but anything that calls
 * `rest_get_server()` early (e.g. from `plugins_loaded`) fires `rest_api_init`
 * before `init` priority 10. The callbacks below — both `register_post_meta`
 * and the controller instantiations — dereference the post type object and
 * would fatal (or trip `_doing_it_wrong`) without this guard.
 */
add_action(
	'rest_api_init',
	static function () {
		if ( ! post_type_exists( Gutenberg_Guidelines_Post_Type::POST_TYPE ) ) {
			Gutenberg_Guidelines_Post_Type::register();
		}
	},
	1
);

// Register post meta once the REST API loads and the block registry is available.
add_action( 'rest_api_init', array( 'Gutenberg_Guidelines_Post_Type', 'register_post_meta' ) );

/*
 * Register content singleton routes beside the standard CPT routes.
 * The singleton rule is scoped to /wp/v2/content-guidelines for UI handling.
 * The standard /wp/v2/guidelines route keeps default post handling for every
 * `wp_guideline` post. If `content` becomes a data level singleton, add
 * enforcement to the default CPT route too.
 */
add_action(
	'rest_api_init',
	static function () {
		$content_controller = new Gutenberg_Content_Guidelines_REST_Controller();
		$content_controller->register_routes();

		$content_revisions_controller = new Gutenberg_Content_Guidelines_Revisions_Controller();
		$content_revisions_controller->register_routes();
	}
);

```
