Created
July 25, 2026 12:03
-
-
Save plugin-republic/b10fceeb2a32d2eafe47e439ed9544ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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