Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rajucs/08a7c55531970c69ffba5f2fccc50bd5 to your computer and use it in GitHub Desktop.
Save rajucs/08a7c55531970c69ffba5f2fccc50bd5 to your computer and use it in GitHub Desktop.
<?php
$catTerms = get_terms('product_cat', array(
'hide_empty' => 0,
'orderby' => 'ASC',
'child_of'=>'30' // air sampling applications
));
echo '<ul>';
foreach($catTerms as $catTerm) {
echo '<li>
<a href="'. get_term_link($catTerm) .'" >' . $catTerm->name.'</a>
</li>';
}
echo '</ul>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment