Wordpress plugin to redirect with notification message [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question 开发者_JS百科I am looking for a Wordpress plugin or simple code for cut & paste into Wordpress Post/Page. What I am looking for is to redirect a post/page in Wordpress to another URL. It must have 10 sec count down and must display this message on top of the screen or somewhere in the post. Is there one available?
Thanks.
use javascript, put this script between header on that page
<script language="JavaScript">
var time = null;
function move() {
window.location = 'http://www.youdomain.com';
}
</script>
apply a codition to output on body tag:
<body <?php if('condition')echo 'onload="timer=setTimeout(\'move()\',10000)" '?>>
<div id="mes">This page will be redirected after 10 secs.</div>
精彩评论