0

我想知道是否有人对如何让 Wordpress 在主页上自动加载新帖子而不是刷新页面有任何想法?

我想这可以通过 ajax/jQuery 来实现,但还没有找到任何建议。

非常感谢。

4

1 回答 1

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)
于 2013-04-29T13:38:01.807 回答