wc_get_price_html_from_text()WC 3.0.0

Returns a 'from' prefix if you want to show where prices start at.

Hooks from the function

Return

String.

Usage

wc_get_price_html_from_text();

Changelog

Since 3.0.0 Introduced.

wc_get_price_html_from_text() code WC 8.7.0

function wc_get_price_html_from_text() {
	return apply_filters( 'woocommerce_get_price_html_from_text', '<span class="from">' . _x( 'From:', 'min_price', 'woocommerce' ) . ' </span>' );
}