我想知道是否有人对如何让Wordpress在主页上自动加载新帖子有任何想法,而不是必须刷新页面?
我想这可以通过ajax / jQuery实现,但还没有设法找到任何建议。
非常感谢。
答案 0 :(得分:0)
早上好
您可以这样做:
<script>
var i = setInterval( function() {
$(".posts").load('post.php'); //Whatever the php page to do the query against here
}, 60000 //timeout in miliseconds
);
</script>
如果由于某种原因需要停止Interval,请使用:
clearInterval(i)