Skip to content

Instantly share code, notes, and snippets.

@pigmentGit
Created November 27, 2014 07:46
Show Gist options
  • Save pigmentGit/2390eea2c10d90dd8daa to your computer and use it in GitHub Desktop.
Save pigmentGit/2390eea2c10d90dd8daa to your computer and use it in GitHub Desktop.
Lista kategorier som är "child of" en speciell kategori
<?php
$args = array(
'orderby' => 'name',
'child_of' => 12
);
$categories = get_categories( $args );
foreach ( $categories as $category ) {
echo '<li><a 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