Walker::get_number_of_root_elements( array $elements ): int

Calculates the total number of root elements.

Parameters

$elementsarrayrequired
Elements to list.

Return

int Number of root elements.

More Information

Counts the number of top-level items (no children or descendants) in the provided array, and returns that count.

Source

public function get_number_of_root_elements( $elements ) {
	$num          = 0;
	$parent_field = $this->db_fields['parent'];

	foreach ( $elements as $e ) {
		if ( empty( $e->$parent_field ) ) {
			++$num;
		}
	}
	return $num;
}

Changelog

VersionDescription
2.7.0Introduced.

User Contributed Notes

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