JoeHana
2/11/2013 - 6:39 AM

Adds the possibility to have custom price labels

Adds the possibility to have custom price labels

/**
 * Custom Price Labels
 */
 
add_filter( 'wpcasa_get_price_labels', 'custom_price_labels' );

function custom_price_labels($property_price_labels) {
    $property_price_labels = array(
		'sold'    => __( 'SOLD', 'wpcasa'  ),
		'rented'  => __( 'RENTED', 'wpcasa'  ),
		'request' => __( 'ON REQUEST', 'wpcasa'  )
	);
	return $property_price_labels;
}