Skip to content

Instantly share code, notes, and snippets.

@ribeiroevandro
Created December 8, 2015 01:27
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 ribeiroevandro/bdd30eb82aec9e6f16c8 to your computer and use it in GitHub Desktop.
Save ribeiroevandro/bdd30eb82aec9e6f16c8 to your computer and use it in GitHub Desktop.
<div>
<h2>Categorias do site</h2>
<ul>
<li><a href="#">Início</a></li>
<li><a href="#">Quem Somos</a></li>
<?php
$args = array(
'orderby' => 'name',
'order' => 'ASC',
'title_li' => 'Departamentos',
);
wp_list_categories( $args );
?>
<li><a href="#">Fale Conosco</a></li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment