epl_get_property_bed_label Bed Label

You can alter the default label bed of using the epl_get_property_bed_label filter. This is used where ever the get_property_bed function is called. One such location is the Property Features list.

Use a simple filter to alter this default label

// Change bed label.
function my_epl_get_property_bed_label( $label ) {
	$label = 'Bedroom';
	return $label;
}
add_filter( 'epl_get_property_bed_label', 'my_epl_get_property_bed_label' );

bed will now appear as Bedroom in the additional features list.