Created
November 27, 2014 07:46
-
-
Save pigmentGit/2390eea2c10d90dd8daa to your computer and use it in GitHub Desktop.
Lista kategorier som är "child of" en speciell kategori
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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