Answer the question
In order to leave comments, you need to log in
How to sort wordpress categories alphabetically?
Hello! Please help, I display categories like this
<?php
$i=1;
$cat = get_query_var('cat');
$categories = get_categories('parent='.$cat.'');
foreach ($categories as $category) { $i++; }
if ($i > 1) {
foreach ($categories as $category) { ?>
<div class="smartphone wow fadeIn">
<div class="smartphone-logo">
<img src="<?php echo z_taxonomy_image_url($category->term_id); ?>"/>
</div>
<div class="smartphone-content">
<span><?php echo $category->name; ?></span>
<p></p>
<a href="<?php echo get_category_link($category->term_id); ?>" class="blick"><span>Подробнее</span><img src="<?php bloginfo('template_directory'); ?>/img/icons/arrow-blue-icon.svg" width="7" height="11"></a>
</div>
</div>
<?php }
} else {
}
?>
Answer the question
In order to leave comments, you need to log in
the function takes an array in which you can specify sorting and so on
https://wp-kama.ru/function/get_categories
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question