Created
July 13, 2019 11:22
-
-
Save rajucs/08a7c55531970c69ffba5f2fccc50bd5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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