How to disable the Code Editor in Gutenberg?
How to disable the Code Editor in Gutenberg?
How to disable the Code Editor in Gutenberg?
When creating a page template in Appearance > Editor you can add a Post Content block. This is where the page content goes. Everything else is part of the template and applies to all Pages that use the template. When you go to Pages > All Pages and select a page to edit, or use … Read more
From the docs https://developer.wordpress.org/block-editor/reference-guides/packages/packages-create-block/ I would say you have to provide template also for that option, though I never used it. I recommend you to get yourself more familiar with block development, it is very clear if block is dynamic or static, if it has php callback for rendering instead of save procedure in javascript, … Read more
The new FSE editor uses a new filter, if you want to hook into that you can do it in two ways: By hooking the individual block rendering: add_filter( ‘render_block_core/navigation-link’, ‘test_render_navigation_link’, 10, 3); function test_render_navigation_link($block_content, $block) { $attributes = $block[“attrs”]; // string replace the href if you want, by checking the content of $attributes return … Read more
Block editor not loading with rest api custom code
Strange behavior of blocks in the editor
How to translate multiple blocks within one plugin
Add another option to default link control settings panel?
ACF InnerBlocks breaks css grid, How can we add classes to allowedblocks (WordPress Gutenberg)
Login out and in to WordPress solved the problem