Skip to content

Instantly share code, notes, and snippets.

@CEscorcio
Last active December 17, 2015 19:58
Show Gist options
  • Save CEscorcio/5663799 to your computer and use it in GitHub Desktop.
Save CEscorcio/5663799 to your computer and use it in GitHub Desktop.
Imprimir os sub menus apenas das categorias em questão.
<?php
$children = wp_list_pages("title_li=&sort_column=menu_order&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul id="subnav">
<?php echo $children; ?>
</ul>
<?php } ?>
OR
$children = wp_list_pages("title_li=&sort_column=menu_order&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul id="subnav">
<?php echo $children; ?>
</ul>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment