Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created October 17, 2018 20:17
Show Gist options
  • Select an option

  • Save luisfelipe-dev/2c840e1b74c4b58673651efaf9a6a9af to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/2c840e1b74c4b58673651efaf9a6a9af to your computer and use it in GitHub Desktop.
<?php
$args = array (
'parent' => 0,
);
$categories = get_categories($args);
foreach($categories as $category) {
echo '<li id="'. $category->slug .'" href="' . get_category_link($category->term_id) . '">' . $category->name . '</a></li>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment