Skip to content

Instantly share code, notes, and snippets.

@bfintal
bfintal / cheatsheet.js
Last active June 28, 2025 01:10
Gutenberg Cheat Sheet
// Get the data of a block
wp.data.select( 'core/block-editor' ).getBlocks()[0]
// Update attributes of another block
// wp.data.dispatch( 'core/editor' ).updateBlockAttributes( clientID, attributes )
wp.data.dispatch( 'core/block-editor' ).updateBlockAttributes( '10d88a6d-95d6-4e07-8293-5f59c83a26c0', { heading: 'New Heading' } )
// Get currently selected block.
wp.data.select( 'core/block-editor' ).getBlockSelectionStart()
@br3ndonland
br3ndonland / github-actions-notes.md
Last active July 8, 2025 10:17
Getting the Gist of GitHub Actions