WP_Block_List::count()publicWP 5.5.0ReturnTypeWillChange

Returns the count of blocks in the list.

Method of the class: WP_Block_List{}

No Hooks.

Return

Int. Block count.

Usage

$WP_Block_List = new WP_Block_List();
$WP_Block_List->count();

Changelog

Since 5.5.0 Introduced.

WP_Block_List::count() code WP 6.5.2

public function count() {
	return count( $this->blocks );
}