Autorefresh post every 3 minutes?

Posted in: Newspaper
Post count: 37

Hi,

Is there a code I can input into one of the backend files that will autorefresh a post every 3 minutes or so? Thanks!

Post count: 2

I think, You can use the meta refresh in the head section.
<meta http-equiv=”refresh” content=”180″/>

or using javascript put in the theme’s Js codes

<script language=”javascript”>
setTimeout(function(){
window.location.reload(true);
}, 180000);
</script>

//period is passed in milliseconds: 3 * 60000 = 180000

Post count: 18283

Hello !

If the @teole’s option does not work you can always use a plugin. Unfortunately the Newspaper theme doesn’t have a function like this. You can achieve this with a plugin but take caution not to get a plugin conflict.

Thank you !

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.