Last active
October 24, 2024 18:22
-
-
Save rickalee/506cd2ebaee69017ab0c7b5a2cc4c67b to your computer and use it in GitHub Desktop.
block_editor_settings_all
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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