Automattic\WooCommerce\Internal\Admin

Loader::output_headingprivate staticWC 1.0

Outputs breadcrumbs via PHP for the initial load of an embedded page.

Method of the class: Loader{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = Loader::output_heading( $section );
$section(array) (required)
Section to create breadcrumb from.

Loader::output_heading() code WC 10.6.2

private static function output_heading( $section ) {
	echo esc_html( $section );
}