Skip to content

Instantly share code, notes, and snippets.

@pramodjodhani
Created March 26, 2025 03:24
Show Gist options
  • Save pramodjodhani/b839ca74aa41a8f355f95d239e2d53b1 to your computer and use it in GitHub Desktop.
Save pramodjodhani/b839ca74aa41a8f355f95d239e2d53b1 to your computer and use it in GitHub Desktop.
Iconic WDS - Update cut off days setting conditionally
<?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