-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathucla-ioes-blocks.js
24 lines (24 loc) · 1.21 KB
/
ucla-ioes-blocks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
wp.domReady( function () {
wp.blocks.unregisterBlockType( 'core/archives' );
wp.blocks.unregisterBlockType( 'core/calendar' );
wp.blocks.unregisterBlockType( 'core/categories' );
wp.blocks.unregisterBlockType( 'core/column' );
wp.blocks.unregisterBlockType( 'core/columns' );
wp.blocks.unregisterBlockType( 'core/comments' );
wp.blocks.unregisterBlockType( 'core/cover' );
wp.blocks.unregisterBlockType( 'core/latest-comments' );
wp.blocks.unregisterBlockType( 'core/media-text' );
wp.blocks.unregisterBlockType( 'core/pullquote' );
wp.blocks.unregisterBlockType( 'core/media-text' );
wp.blocks.unregisterBlockType( 'core/page-list' );
wp.blocks.unregisterBlockType( 'core/read-more' );
wp.blocks.unregisterBlockType( 'core/rss' );
wp.blocks.unregisterBlockType( 'core/search' );
wp.blocks.unregisterBlockType( 'core/shortcode' );
wp.blocks.unregisterBlockType( 'core/site-logo' );
wp.blocks.unregisterBlockType( 'core/site-tagline' );
wp.blocks.unregisterBlockType( 'core/site-title' );
wp.blocks.unregisterBlockType( 'core/template-part' );
wp.blocks.unregisterBlockType( 'core/tag-cloud' );
wp.blocks.unregisterBlockType( 'core/verse' );
} );