How to Delete Pagination on a Blog - KhalistaBlog -->
Skip to content Skip to sidebar Skip to footer

How to Delete Pagination on a Blog

How to Delete Pagination on a Blog - Numbered Page Navigation or commonly referred to as Pagination is a JavaScript code that functions to divide several pages of a website or blog. A website or blog that uses the pagination feature is usually indicated by the numbers at the bottom of the website that share several pages of feeds or posts.

This pagination feature can help you to determine how many posts will be displayed on the home page, so that if the number of posts has been determined and the number of posts has exceeded the specified limit then this pagination feature will divide it into two pages and so on.

Creating numbered pages with the pagination feature in my opinion makes a website, especially a blog, a little longer when the page is loaded. Because actually JavaScript code is not good for blog loading speed, so to speed up loading your blog or website it's better to delete pagination.

How to Delete Pagination on a Blog

How to remove pagination or numbered pages on blogger is actually quite easy as long as you understand with some programming code. On this occasion I will explain a little about how to delete pagination on a blog, for wordpress users if you install pagination features or numbered pages using a plugin then please just delete the plugin.

How to Remove Numbered Page Navigation


1. Enter Blogger >> Click Theme >> Edit HTML

2. Search and delete the code as below:

Example code 1:

<script>
//<![CDATA[
if(typeof firstText=="undefined")firstText="First";if(typeof lastText=="undefined")lastText="Last";
...
... until the code ....
...
{var pAddress="/search/label/"+postLabel+"?updated-max="+timestamp+"&max-results="+perPage+"#PageNo="+noPage}location.href=pAddress}
//]]>
</script>

Example code 2:

<script type='text/javascript'>
//<![CDATA[
var nopage;var jenis;var nomerhal;var lblname1;halamanblogger();function loophalaman(banyakdata){var html='';
...
... until the code ....
...
{var alamat="/search/label/"+lblname1+"?updated-max="+timestamp+"&max-results="+postperpage+"#PageNo="+nopage}location.href=alamat}
//]]>
</script>

3. If so, please click Save theme

Note:
Each blog template has different pagination javascript code, so this tutorial may not apply to the blog template that you are currently using.

If you need help to remove this numbered page or pagination feature on the blog, don't hesitate to contact us via the contact page on this blog. That's the article on how to delete pagination on a blog, hopefully with this article I have shared it can be useful and good luck.

Post a Comment for "How to Delete Pagination on a Blog"