Code-Snippets-Functions/Execute a function on a child site/WordPress/disable-block-locking-settings-globally-on-posts-pages.txt

14 lines
310 B
Text

add_filter(
'block_editor_settings_all',
function( $settings, $context ) {
// Disable for posts/pages.
if ( $context->post && $context->post->post_type === 'page' ) {
$settings['canLockBlocks'] = false;
}
return $settings;
},
10,
2
);