Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created July 25, 2026 12:03
Show Gist options
  • Select an option

  • Save plugin-republic/b10fceeb2a32d2eafe47e439ed9544ed to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/b10fceeb2a32d2eafe47e439ed9544ed to your computer and use it in GitHub Desktop.
<?php
/**
* Change day into night
*/
function my_bfwc_filter_unit_labels( $labels ) {
$labels['day'] = array(
'single' => __( 'Night', 'bfwc' ),
'plural' => __( 'Nights', 'bfwc' ),
);
return $labels;
}
add_filter( 'bfwc_filter_unit_labels', 'my_bfwc_filter_unit_labels' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment