Skip to content

Instantly share code, notes, and snippets.

View hegemanjr's full-sized avatar

Jeff Hegeman hegemanjr

View GitHub Profile
@hegemanjr
hegemanjr / countdown-redirect.php
Last active August 14, 2019 16:27
Count Down Redirect Using JavaScript and PHP
<?php
/**
* These constants can be set elsewhere in your project, ideally in a configuration file.
*/
if ( ! defined( 'COUNTDOWN_REDIRECT_LOCATION' ) ) {
define('COUNTDOWN_REDIRECT_LOCATION', 'https://google.com');
}
if ( ! defined( 'COUNTDOWN_REDIRECT_SECONDS' ) ) {
define('COUNTDOWN_REDIRECT_SECONDS', 15);
}