abdulkrm

Remove "or // to use ContentAI"

Sep 10th, 2023
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. function custom_block_editor_script() {
  2. ?>
  3. <script type="text/javascript">
  4. wp.domReady( function() {
  5. wp.hooks.addFilter(
  6. 'blocks.registerBlockType',
  7. 'mytheme/custom-placeholder',
  8. function( settings, name ) {
  9. if ( name === 'core/paragraph' && settings.attributes.placeholder ) {
  10. settings.attributes.placeholder.default = 'Type / to choose a block';
  11. }
  12. return settings;
  13. }
  14. );
  15. } );
  16. </script>
  17. <?php
  18. }
  19. add_action( 'admin_footer', 'custom_block_editor_script' );
  20.  
Advertisement
Add Comment
Please, Sign In to add comment