Skip to content

Instantly share code, notes, and snippets.

@zavod008
Created September 29, 2016 15:30
Show Gist options
  • Save zavod008/30dc2002958354974973f46c55e2f706 to your computer and use it in GitHub Desktop.
Save zavod008/30dc2002958354974973f46c55e2f706 to your computer and use it in GitHub Desktop.
<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