Created
March 26, 2025 03:24
-
-
Save pramodjodhani/b839ca74aa41a8f355f95d239e2d53b1 to your computer and use it in GitHub Desktop.
Iconic WDS - Update cut off days setting conditionally
This file contains 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 | |
/** | |
* Iconic WDS - Change next day cutoff for fridays. | |
*/ | |
function iconic_change_next_day_cutoff() { | |
global $iconic_wds; | |
$day = '5'; // Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday = 5, Saturday = 6, Sunday = 7 | |
// set cut off to 14:00 for fridays. | |
if ( wp_date( 'w' ) == $day ) { | |
$iconic_wds->settings['datesettings_datesettings_nextday_cutoff'] = '14:00'; | |
} | |
} | |
add_action( 'wp_loaded', 'iconic_change_next_day_cutoff', 11 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment