Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function custom_block_editor_script() {
- ?>
- <script type="text/javascript">
- wp.domReady( function() {
- wp.hooks.addFilter(
- 'blocks.registerBlockType',
- 'mytheme/custom-placeholder',
- function( settings, name ) {
- if ( name === 'core/paragraph' && settings.attributes.placeholder ) {
- settings.attributes.placeholder.default = 'Type / to choose a block';
- }
- return settings;
- }
- );
- } );
- </script>
- <?php
- }
- add_action( 'admin_footer', 'custom_block_editor_script' );
Advertisement
Add Comment
Please, Sign In to add comment