Skip to content

Instantly share code, notes, and snippets.

@benjaminniess
Created December 1, 2013 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjaminniess/7739630 to your computer and use it in GitHub Desktop.
Save benjaminniess/7739630 to your computer and use it in GitHub Desktop.
The default WordPress sidebar structure
<aside id="sidebar">
<div class="widget-area">
<div class="widget widget-class-du-widget">
<h4 class="widgettitle">Titre du widget</h4>
<p>Contenu de votre widget et structure de votre choix</p>
</div>
<div class="widget widget_archive">
<h4 class="widgettitle">Widget archive</h4>
<select name="archive-dropdown">
<option value="0">Choisir un mois</option>
<option value="1"> juillet 2013 </option>
<option value="2"> juin 2013 </option>
<option value="3"> avril 2013 </option>
<option value="4"> décembre 2012 </option>
</select>
</div>
</div>
</aside>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment