I create Recent posts widget and i trying to create load more button for it to get more Recent posts links by ajax ,is there any tutorial for how to make it?
1 comment
Comments are closed.
I create Recent posts widget and i trying to create load more button for it to get more Recent posts links by ajax ,is there any tutorial for how to make it?
Comments are closed.
Look at WordPress’s documentation on AJAX
In your theme or plugin, you’ll want to have code like:
[1]
query_posts()
documentation[2] WordPress loop documentation
Then to reach this function you’ll want to have on your front end, assuming you’re using jQuery:
[3] See WordPress’s documentation on AJAX to generate the
ajax_url
: “As this article suggests, use wp_localize_script() to make the URL available to your script, and generate it using this expression: admin_url(‘admin-ajax.php’)”