WordPress Automatische Weiterleitung nach X Sekunden ohne Plugin

Problem

I have homepage which needs to redirect to another page. For this to accomplish, I used the meta fresh tag

<meta http-equiiv=refresh content="6; url=/home/">

And, it works perfectly. Later I found on Internet that this meta fresh code tag has been deprecated and is not at all SEO friendly.

 

Lösung

Folgenden Code in einen Codeblock in Oxygen (PHP) schreiben:

<?php
header( "refresh:5;url=wherever.php" );
?>

Man wird nun nach 5 Sekunden auf die entsprechende URL weitergeleitet.

 

NOCH BESSER:

In Oxygen Java-CodeBlock einfügen:

window.setTimeout("location.href='https://sofa-studio-mannheim.de';", 5000);

>>> Die Weiterleitung auf https://sofa-studio-mannheim.de findet nach 5 Sekunden statt.