WORDPRESS如何使用AJAX来获取POSTS

时间:2014-10-27 17:39:36

标签: ajax wordpress

loop.php中的

wordpress我有三种输入类型的无线电:  按日期过滤1个帖子  按计数视图进行2次过滤  通过评论3过滤

我如何使用ajax来获取这些过滤器?

这是我的代码

<div class="filter">
   <form action="#" id="form-filter">
          <input type="radio" id ="listing-1" name="filters" value="recents" checked><label for="listing-1">the must recent</label>
          <input type="radio" id ="listing-2" name="filters" value="views"><label for="listing-2">the must views</label>
          <input type="radio" id ="listing-3"  name="filters" value="comments"><label for="listing-3">the must comments</label>
      </form>
</div>    

这是代码php

if ( have_posts() ) {
   while ( have_posts() ) {
       the_post(); 

       //the_post_thumbnail
       // Post Content here


   } // end while
  } // end if

感谢

1 个答案:

答案 0 :(得分:0)

首先,在学习如何在Wordpress中学习之前,您需要了解AJAX的工作原理。您正处于基于AJAX的应用程序开发的开始阶段。

其次,对于您希望如何实施项目没有限制;但建议使用基于admin-ajax的功能。

还建议了解nonce在数据安全性方面的用法。肯定有很多其他的东西。请进行大量搜索并阅读大量示例。