Hi Friends,
In This Topic We Discuss About Latest Information : How to add Categories/Label Dropdown Box for Blogspot/Blogger
Step by Step Process How to add Categories/Label Dropdown Box for Blogspot/Blogger
Step 1 : Login to Blogger
Step 2: Go to Dashboard >> Select the Template >> Click on Edit HTML
Step 3 : Search for Below Code
<b:widget id='Label1' locked='false' title='Labels' type='Label'/>
Step 4 : After that Replce With Following Code.
<b:widget id='Label1' locked='false' title='Categories' type='Label'>Step 5 : Save Template.
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<br/>
<select onchange='location=this.options[this.selectedIndex].value;' style='width:180px;'>
<option>Select a Category Here</option>
<b:loop values='data:labels' var='label'>
<option expr:value='data:label.url'><data:label.name/>
(<data:label.count/>)
</option>
</b:loop>
</select>
</div>
</b:includable>
</b:widget>
Thank You.
Happy Blogging.
Write Your Comments Below.