epl_get_property_bedrooms_label Bedrooms label
You can alter the default label Bedroom s of using the epl_get_property_bedrooms_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_bedrooms_label( $label ) { $label = 'Beds'; return $label; } add_filter( 'epl_get_property_bedrooms_label', 'my_epl_get_property_bedrooms_label' );
Bedrooms will now appear as Beds in the additional features list.