Created
February 27, 2016 13:24
-
-
Save MasterHans/e195ffc05ddb33a8dd39 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
$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