我正在尝试使用jQuery重新加载新帖子。据我所知,我无法在页面中重新加载div的内容,所以我将文件重新加载到该div中。
问题是我加载的文件给了我Fatal error: Call to undefined function wp_query()
如何对主题目录中新创建的文件实现功能以正常工作?
This is my jQuery
<script language="JavaScript">
$(function() {
var SANAjax = function(){
}
setInterval(SANAjax, 15000 );
});
</script>
And this is what i have in reloadhomeposts.php
(I have deleted the content though)<?php $recent = new WP_Query("cat=3,4,5&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
.
.
.
<?php endwhile; ?>