WordPress Plugin – jQuery Post Splitter
jQuery Post Splitter is a WordPress plugin which will help you to split posts and pages into multi-pages. In addition you will have a button along with the icons of WordPress text editor in posts and pages. You can make as many as pages within the post or page.
Possible Implementations:
- You can create an easy to manage article with it
- News websites can use it amazingly to engage their audience more
- Albums and slideshows can be created with it
- Testimonials can be managed with it easily
- FAQ’s in case of longer text or if available with some visual aids
- Video tutorials gallery can be easily created with it







A few useful snippets:
#1
In case you want to put some advertisement before your navigation bar.
Note: .cb-post-large.cb-post-footer-block need to be replaced with the CSS selector of your required div or any other HTML element tag which need to be moved between content and the navigation.
jQuery(document).ready(function($){
var i = 0;
var x = setInterval(function(){
i++;
if(($(‘.jps-bottom-nav’).length>0 && $(‘.cb-post-large.cb-post-footer-block’).length>0) || i >10){
$(‘.cb-post-large.cb-post-footer-block’).insertBefore($(‘.jps-bottom-nav’));
clearInterval(x);
}
}, 300);
});
var i = 0;
var x = setInterval(function(){
i++;
if(($(‘.jps-bottom-nav’).length>0 && $(‘.cb-post-large.cb-post-footer-block’).length>0) || i >10){
$(‘.cb-post-large.cb-post-footer-block’).insertBefore($(‘.jps-bottom-nav’));
clearInterval(x);
}
}, 300);
});