Guest User

Untitled

a guest
Feb 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'admin_footer', function(){
  4. ?><script>wp.blocks.unregisterBlockType( 'core/verse' );</script><?php
  5. });
  6.  
  7. //or
  8.  
  9. add_filter( 'allowed_block_types', function() {
  10. return [ 'core/paragraph' ];
  11. });
  12.  
  13. // or..
Add Comment
Please, Sign In to add comment