Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MasterHans/e195ffc05ddb33a8dd39 to your computer and use it in GitHub Desktop.
Save MasterHans/e195ffc05ddb33a8dd39 to your computer and use it in GitHub Desktop.
<?php
$categories = get_categories('child_of=8&hide_empty=0');;
//echo var_dump($categories);
foreach ($categories as $category) {
echo $category->name ;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment