auto redirect on delay

PHOTO EMBED

Fri Jan 05 2024 08:58:50 GMT+0000 (Coordinated Universal Time)

Saved by @sandeepv

/* Redirect to any external (or internal) URL WITH a delay - add this to your ''functions.php with your own URLs */
function reialesa_URL_redirect(){
?>
<script>
setTimeout (function () {
if (window. location == "http://3.109.18.9/") {
window. location.href = 'http://3.109.18.9/party-people/';
}}, 6000);
</script>
<?php
}
add_action ('wp_footer', 'reialesa_URL_redirect');
content_copyCOPY