Skip to content

Instantly share code, notes, and snippets.

@dlh01
dlh01 / functions.php
Last active August 7, 2023 17:59
Infinite loop test theme
<?php
add_action(
'enqueue_block_editor_assets',
function () {
wp_enqueue_script(
'title-checker-js',
get_theme_file_uri( 'title-checker.js' ),
[],
null,
@dlh01
dlh01 / gb5187.php
Last active September 17, 2023 02:06
Decorator pattern for serializing blocks
<?php
// https://github.com/WordPress/wordpress-develop/pull/5187
namespace GH5187;
interface Block_Content {
public function content( string $content, array $block ): string;
}
@dlh01
dlh01 / _BLOCK-EDITOR.md
Last active March 25, 2025 03:41
Block editor

Block editor things to remember.