wpCasa: Set custom rental periods
<?php
/**
* Set custom rental periods
*/
add_filter( 'wpsight_rental_periods', 'wpsc67_rental_periods', 100 );
function wpsc67_rental_periods( $rental_periods ) {
$rental_periods = array(
'rental_period_1' => __( 'per Month', 'wpsight' ),
'rental_period_2' => __( 'per Week', 'wpsight' ),
'rental_period_3' => __( 'per Year', 'wpsight' ),
'rental_period_4' => __( 'per Day', 'wpsight' )
);
return $rental_periods;
}