Hooks::filterbar_cost_range_label( string $label, int $min,  $max )

Filter the default range label.


Parameters

$label

(string) (Required) The default range label.

$min

(int) (Required) The maximum value for the range.


Top ↑

Return

(string) The formatted range label.


Top ↑

Source

File: src/Tribe/Views/V2_1/Hooks.php

	public function filterbar_cost_range_label( $label, $min, $max ) {
		return Cost::filter_range_label( $label, $min, $max );
	}

Top ↑

Changelog

Changelog
Version Description
5.0.0 Introduced.