Remove WP 6.4 Lightbox “Expand on Click” functionality
Remove WP 6.4 Lightbox “Expand on Click” functionality
Remove WP 6.4 Lightbox “Expand on Click” functionality
Gutenberg doesn’t give an option to remove specific heading levels from the editor interface. But, I think you can workaround using a bit of custom code (both PHP and some JavaScript). If you’re interested, try this. Add this custom snippet to your theme’s function.php file. function remove_h1_from_editor() { wp_enqueue_script( ‘remove-h1’, get_template_directory_uri() . ‘/js/remove-h1.js’, array(‘wp-blocks’, ‘wp-dom-ready’, … Read more
Passing context to core/navigation-link
Can I use the Query Loop as a component-dependency inside my block?
Create error handling metabox fields WP block editor / rest mode
Disabling blocks in the Gutenberg block Inserter
Can’t override individual Button Style once I have set a Global Style in the Full Site Editor
Use ClassicPress: a fork of WordPress before Gutenberg was added to core, and is actively maintained and improved (latest version: June 2024), though not as frequently as WordPress (reduced community size).
Can I integrate Gutenberg on one page only?
This isn’t how the WordPress components are supposed to be used. The components from @wordpress/components are meant for use in the admin, typically for creating a UI in the block editor. See how the package is described in the documentation (emphasis mine): This package includes a library of generic WordPress components to be used for … Read more