Skip to content

Instantly share code, notes, and snippets.

@softauthor
Last active January 12, 2020 02:28
Show Gist options
  • Save softauthor/6ff432baa024094befe611a65ab9f4e1 to your computer and use it in GitHub Desktop.
Save softauthor/6ff432baa024094befe611a65ab9f4e1 to your computer and use it in GitHub Desktop.
<?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