register_block_core_categories()

Registers the core/categories block on server.


Description Description


Source Source

File: wp-includes/blocks/categories.php

function register_block_core_categories() {
	register_block_type(
		'core/categories',
		array(
			'render_callback' => 'render_block_core_categories',
		)
	);
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.