如何在此wordpress循环中添加更多加载按钮ajax按钮?

时间:2018-10-02 08:06:33

标签: ajax wordpress

ping 192.168.xx.xx

如何添加加载更多按钮以使用ajax加载帖子?

1 个答案:

答案 0 :(得分:0)

您将需要使用javascript(而不是php)来执行此操作,请查看此https://www.w3schools.com/jquery/jquery_ajax_get_post.asp。您将需要在html说

中添加按钮
<button id="load_more" type="button">Load More</button>

然后在javascript中(这是使用jQuery的示例)

$("#load_more").click(function(){
    $.get("your/route", function(data, status){
        //here you can add the data to the page depending on what the data is 
    });
});

您的/路线是您在php中设置的用于获取更多帖子的路线