How to make Pagination in blogger

3 min read

Hello, Bloggers! Welcome to Raghavendra Technic.



In this tutorial, we are going to show you



How to add Pagination in blogger



Important!Before we start adding codes in XML, I will recommend you to take a Backup of your current theme. By chance if any problem occurs, you can restore it later.



Step 1: First of all Login to your Blogger Dashboard.



Step 2: On Blogger Dashboard, click Theme.



Step 3: Click the arrow down icon next to 'customize' button.



Step 4: Click Edit HTML, you will be redirected to editing page.



Step 5: Now search the code ]]></b:skin> and paste the following CSS Codes just above to it.




/* Pagination by (T_MK) */
.postNav{display:flex;flex-wrap:wrap;justify-content:center; font-size:90%;line-height:20px; color:#fefefe; margin-top:30px;margin-bottom:0}
.postNav > *{display:flex;align-items:center; padding:10px 13px;margin-bottom:10px; color:inherit;background-color:#f09800; border-radius:2px;text-decoration:none} .postNav > *:hover{opacity:.8}
.postNav .current{background-color:rgba(0,0,0,.03); color:#989b9f}
.postNav{font-size:13px; margin:50px 0} .postNav > *{padding:8px 15px;border-radius:2px;margin-bottom:8px} .postNav > *:not(:last-child){margin-right:8px}


Step 6: Now search the code </body> and paste the following Codes just below to it.



that if you use the median-ui 1.5 template, you just need to use javascript because the css is already in your template, and it's important to change div.post-body to div.postBody in the javascript below.



<b:if cond='data:view.isPost'>
<script>/*<![CDATA[*/
document.addEventListener('DOMContentLoaded', function() {function checkChildren(nodes, elemId){for(i=0;i<nodes.length;i++){if(nodes[i].id==elemId){return nodes[i];}else{return checkChildren(nodes[i].children, elemId);}}} function isNumeric(value) {var type = typeof value; return (type === 'number' || type === 'string') && !Number.isNaN(value - Number.parseFloat(value));} var nodes = document.querySelector('div.post-body').children; var splitdong = checkChildren(nodes, 'rtwpagination').innerHTML; var content = splitdong.split('<!--nextpage-->'); var url = window.location.href; var url = url.split('?page='); var no = url[1] + '&m=4'; var no = no.split('m'); var no = no[0]; var no = no.replace('&', ''); var url = url[0]; var i = 1; if( !isNumeric(no) ){var no = 1;} document.getElementById('rtwpagination').innerHTML = content[no-1]; if( content.length > 1 ) {document.getElementById('rtwpagination').innerHTML += "<div class='postNav' id='postPager'><span class='page current'>Pages :</span></div>";} if( no>1 ){document.getElementById('postPager').innerHTML += "<!-- <a href='"+url+"?page="+(no-1)+"' title='Previous Page'>Prev</a> -->";} content.forEach(function(item) { if( no == i ){document.getElementById('postPager').innerHTML += "<span class='current'>"+i+"</span>";} else {document.getElementById('postPager').innerHTML += "<a href='"+url+"?page="+i+"'>"+i+"</a>";} i++; }); if(content.length > no){ var nn = parseInt(no) + 1; document.getElementById('postPager').innerHTML += "<a href='"+url+"?page="+nn+"'>Next</a>";} });
/*]]>*/</script>
</b:if>


How to write on posts



when creating an article you must use the html tag below, so your text and images must be in it.




<div id='rtwpagination'>
<!--[ your writing here ]-->
</div>


and each separate article to the next page must end with a comment tag as below, except for the last page.




<!--nextpage-->


so that the whole will more or less look like below.




<div id='rtwpagination'>

<h2>page 1</h2>
<p>The customer is very happy</p>
<!--nextpage-->

<h2>page 2</h2>
<p>The customer is very happy</p>
<!--nextpage-->

<h2>page 3</h2>
<p>The customer is very happy</p>

</div>


Step 7: Now click on Save by clicking this icon



Step 8: That's done!







Credit


Created by :
Jagodesain.


Conclusion


In this article I have made a tutorial on MKT. I hope you have liked it and Please do share with your friends and follow our blog for more



If you face any problems in code or have any questions please feel free to ask in comments section or join our Telegram Group for discussion.



Our All Posts Are Protected By DMCA. So Don't Try To Copy Our Posts And Reproduction In Any Way Is Strictly Prohibited! Or else Legal Actions Will Be Taken. © Raghavendra Technic | All Rights Reserved



© Copyright:
raghavendratechnic.blogspot.com

~ Learning.

You may like these posts

  • Hello, Bloggers! Welcome to Raghavendra Technic.In this tutorial, we are going to show you How To Remove Date From Blogger Post URLAre you searching for how to change permalink in …
  • Hello, Bloggers! Welcome to Raghavendra Technic.In this tutorial, we are going to show you How to add Pagination in blogger Important!Before we start adding codes in XML, I will r…
  • Hello, Bloggers! Welcome to Raghavendra Technic.In this tutorial, we are going to show you How to Add Syntax Highlighter in BloggerMost of you somehow will have noticed on many of …
  • Hello, Bloggers! Welcome to Raghavendra Technic.In this tutorial, we are going to show you How to make Codebox in bloggera codebox with a nice Copy and Download Code button for Blo…
  • Hello, Bloggers!Updated on June 19, 2022In this tutorial, we are going to show you How To Remove .html Extension From Blogger Post URL?how could you remove .html extension out of y…
  • Hello, Bloggers! Welcome to Raghavendra Technic.Are you observing the Word Counter Script on blogger. This is the Right Place to you. Since You can get this Script for free.Today, …

Post a Comment

Bookmark