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 // Ignore this first line when copying to your child theme's functions.php file. | |
function schedule_my_popup( $is_loadable, $popup_id ) { | |
if( $popup_id == 14 ) { // Change to your popup ID. | |
date_default_timezone_set('Asia/Singapore'); // Change to your time zone. | |
$now = strtotime( 'now' ); | |
$start = strtotime( 'September 8, 2021 12:00PM' ); // Change to your local start time. | |