+{"generator":"Code Snippets v2.13.2","date_created":"2019-02-13 20:44","snippets":[{"name":"Allow specific block types in Gutenberg editor","desc":"https:\/\/rudrastyh.com\/gutenberg\/remove-default-blocks.html","tags":["block","types","editor","gutenberg","wordpress","allow"],"scope":"admin","code":"add_filter( 'allowed_block_types', 'wp_allowed_block_types' );\r\n \r\nfunction wp_allowed_block_types( $allowed_blocks ) {\r\n \r\n\treturn array(\r\n\t\t'core\/image',\r\n\t\t'core\/paragraph',\r\n\t\t'core\/heading',\r\n\t\t'core\/list'\r\n\t);\r\n \r\n}"}]}
0 commit comments