विजेट को ब्लॉग पर कैसे ले जाए
- सबसे पहले ब्लॉगर खाते में प्रवेश करे , यहाँ जाये Blogger--->Design--->Edit HTML
- अब ऊपर expand widget template cheakbox पर क्लिक करे
- अब keyboard की ctrl+F कुंजी दबाये व यहाँ <body> कोड तलाशे
- अब इस कोड के ठीक बाद में नीचे दिया गया पूरा कोड यथावत डाल दे
<script type='text/javascript'>
//<![CDATA[
function commentpagination(url,comment){
var posturl= url;
var comment = comment;
cmpage = Math.ceil(comment/200);
document.write('<a rel="nofollow" href="'+posturl+'?commentPage=1">Oldest</a>');
for (var i = 1; i <= cmpage; i++) {
document.write('<a rel="nofollow" href="'+posturl+'?commentPage='+i+'">'+i+'</a>');
}
document.write('<a rel="nofollow" href="'+posturl+'?commentPage='+cmpage+'">Latest</a>');
}
//]]>
</script>
पीले रंग में बताये गए टेक्स्ट को आप अपनी सुविधा अनुसार बदल सकते है ।
अब keyboard की ctrl+F कुंजी दबाये व अपनी ब्लॉग टेम्प्लेट में नीचे बताया कोड तलाशे
<h4><b:if cond='data:post.numComments == 1'>
1 <data:commentLabel/>:
<b:else/>
<data:post.numComments/> <data:commentLabelPlural/>:
</b:if>
</h4>
अब इस कोड के ठीक पहले नीचे दिया गया कोड यथावत डाले :
<font style='color:#289728; font-size:12px; font-weight:bold; padding-right:4px; '> Comment Page :</font>
<script type='text/javascript'>commentpagination("<data:post.url/>","<data:post.numComments/>");</script>
</span>
अब अपनी ब्लॉग टेम्प्लेट में ]]></b:skin>कोड तलाशे व ठीक इसके बाद नीचे बताया गया पूरा कोड यथावत डाले
/* -------------- Comment Pagination Stylesheet By Hindi4tech --------*/
#commentpaging { background:#F7F9FA; margin:0px padding:20px auto; width:580px; border:1px solid #ddd; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; text-align:right;}
#commentpaging a { margin-right:5px;}
अब टेम्पलेट सेव करे :))