Hello,
I'm tweaking my blog and have run into a problem. In the header, the categories sort themselves by name or rather alphabetically.
<ul>
<?php wp_list_categories('sort_column=name&exclude=55,56 ,57,58&title_li=&depth=1'); ?>
</ul>
I have been able to exclude the categories, which I don't want and happy that that works, but I can't understand what to do?
If I write ('sort_column=id&exclude=55,56,57,58&title_li=&dep th=1');
then my categories will still remain in alphabetical order AND one of the categories sometimes drops out.
I have consulted Wordpress Codex but I can't figure it out.
I did try to write ('include=1,2,3,4&exclude=55,56,57,58&title_li=&de pth=1');
but that hasn't worked either.
I have been recommended to using a '$mylist=news,environment,arctic' but I can't find a "$mylist " code in my header.
So does anyone have any idea how sort the categories so that they do not get ordered alphabetically?
/C