Created
September 29, 2016 15:30
-
-
Save zavod008/30dc2002958354974973f46c55e2f706 to your computer and use it in GitHub Desktop.
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
<ul> | |
<?php | |
$args = array( | |
'type' => 'post', | |
'child_of' => '', | |
'parent' => '2', | |
'orderby' => 'ID', | |
'order' => 'ASC', | |
'hide_empty' => 0, | |
); | |
$categories = get_categories( $args ); | |
if( $categories ){ | |
foreach( $categories as $cat ){ | |
// Данные в объекте $cat ?> | |
<li> | |
<img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" /> | |
<a href="#<?php echo $numb; ?>"><?php echo $cat->name; ?></a> | |
</li> | |
<?php } | |
}?> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment