Skip to content

Instantly share code, notes, and snippets.

@jonaslsl
Last active August 29, 2015 14:13
Show Gist options
  • Save jonaslsl/058651e7a4a82e5d4e54 to your computer and use it in GitHub Desktop.
Save jonaslsl/058651e7a4a82e5d4e54 to your computer and use it in GitHub Desktop.
Listin WP taxonomies
<?php
$args = array(
'orderby' => 'name',
'order' => 'ASC',
'taxonomy' => 'client_cat',
'hide_empty' => '0'
);
$categories = get_categories($args);
foreach ($categories as $key => $cat) {
echo '<a id="' . $cat->slug . '" href="#">' . $cat->name . '</a>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment