Skip to content

Instantly share code, notes, and snippets.

@rickalee
Last active October 24, 2024 18:22
Show Gist options
  • Save rickalee/506cd2ebaee69017ab0c7b5a2cc4c67b to your computer and use it in GitHub Desktop.
Save rickalee/506cd2ebaee69017ab0c7b5a2cc4c67b to your computer and use it in GitHub Desktop.
block_editor_settings_all
<?php
/**
* Enable Automatic Anchor Tags Generation for Headings
*/
function enable_block_anchors( $settings, $context ) {
// Enable anchor generation
$settings['generateAnchors'] = true;
return $settings;
}
add_filter( 'block_editor_settings_all', 'enable_block_anchors', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment