Help needed: Content pagination / initial scrolling

Bedros

Registered Member
Joined
Aug 18, 2017
Messages
88
Reaction score
57
Hello guys,

could someone please help me with this function: How can I create such content pagination / initial scrolling like on this page below?

https://trendscatchers.co.uk/index.php/es/2020/06/19/los-cientificos-se-aterrorizan-al-descubrir-esto-en-las-profundidades-marinas-2/

I know how to do the pagination with the next button etc but I would like to have something like they use. So content pagination with scrolling. Is there a WP plugin for that? I tried to search for something like that but couldn't find anything.

Thanks a lot for any help
 
You need to do it in JavaScript, to detect scroll and fetch the next page with XMLHttpRequest. It's called infinite scrolling.
 
You need to do it in JavaScript, to detect scroll and fetch the next page with XMLHttpRequest. It's called infinite scrolling.

Thanks for the replay.

Do you know any sources I could use?
 
Do you know any sources I could use?
Code:
https://infinite-scroll.com/
https://stackoverflow.com/questions/6456846/how-to-do-an-infinite-scroll-in-plain-javascript
https://codepen.io/wernight/details/YyvNoW
https://www.wpbeginner.com/plugins/how-to-add-infinite-scroll-to-your-wordpress-blog/
https://www.wordpress.org/plugins/yith-infinite-scrolling/
https://www.wordpress.org/plugins/ajax-load-more/
https://wpengine.com/resources/infinite-scroll-wordpress/
 
Code:
https://infinite-scroll.com/
https://stackoverflow.com/questions/6456846/how-to-do-an-infinite-scroll-in-plain-javascript
https://codepen.io/wernight/details/YyvNoW
https://www.wpbeginner.com/plugins/how-to-add-infinite-scroll-to-your-wordpress-blog/
https://www.wordpress.org/plugins/yith-infinite-scrolling/
https://www.wordpress.org/plugins/ajax-load-more/
https://wpengine.com/resources/infinite-scroll-wordpress/

Thanks mate. I have tried all the plugins, but they don't have the option to do it with content (or at least I couldn't figure it out). I am using
Theia Post Slider right now, but they don't have the infinite scroll.

Anyways, I will try that from stackoverflow, Cheers!
 
Back
Top