Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created November 29, 2016 17:10
Show Gist options
  • Select an option

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

Select an option

Save luisfelipe-dev/a3bf6e4ebd69876f6cba5293cb8aff95 to your computer and use it in GitHub Desktop.
Lista todas categorias usadas em forma de link
<?php
$args = array(
'orderby' => 'name',
'parent' => 0
);
$categories = get_categories( $args );
foreach ( $categories as $category ) {
echo '<a href="' . get_category_link( $category->term_id ) . '">- ' . $category->name . ' -</a>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment