Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created February 13, 2018 13:13
Embed
What would you like to do?
function my_bfwc_filter_check_in_placeholder( $label ) {
$label = 'Start rental';
return $label;
}
add_filter( 'bfwc_filter_check_in_placeholder', 'my_bfwc_filter_check_in_placeholder' );
function my_bfwc_filter_check_out_placeholder( $label ) {
$label = 'End rental';
return $label;
}
add_filter( 'bfwc_filter_check_out_placeholder', 'my_bfwc_filter_check_out_placeholder' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment