Mary Immaculate Parish - Plainfield, IL

Restrict Block Types (Gutenberg)

Assigned to
Kyle Sullivan, Web Development at Diocesan Kyle S.

Comments & Events

Kyle Sullivan, Web Development at Diocesan
add_filter( 'allowed_block_types', 'dpi_allowed_block_types' );
function dpi_allowed_block_types( $allowed_blocks ) {
	return array(
		'core/image',
		'core/paragraph',
		'core/heading',
		'core/list',
		'core/video',
		'core/file'
	);
}
Kyle Sullivan, Web Development at Diocesan
Kyle Sullivan completed this to-do.