Last active
January 12, 2020 02:28
-
-
Save softauthor/6ff432baa024094befe611a65ab9f4e1 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 | |
$par_args = array( | |
'parent' => 0 | |
); | |
$parent_categories = get_categories($par_args); | |
foreach($parent_categories as $parent_category) { | |
echo '<h2 class="ui header">' . $parent_category->name . '</h2>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment