customizing navmenu with categories in a specific order
-
I have customised my navmenu in the header.php to show the category list instead of page list (wp default) with the following code :
default:
<li <?php if ( is_home() ) { ?> class=”current_page_item” <?php } ?>>/”>Home
<?php
$pages = wp_list_pages(‘sort_column=menu_order&title_li=&echo=0’);
$pages = preg_replace(‘%]+)>%U’,’‘, $pages);
$pages = str_replace(‘‘,”, $pages);
echo $pages;
?>replaced with this :
<li <?php wp_list_categories(‘title_li=’); ?>
it worked well, but it’s put in an alphebatical ordrer.
I’d like to put my 5 categories in a specific order from left to right like :
cat 4, 18, 6, 5, 7i don’t know the php code to display it corrrectly:
show cat 4 – show cat 18 – show cat 6 – show cat 5 – show cat 7
can someone help me ?
i’m a noob
- The topic ‘customizing navmenu with categories in a specific order’ is closed to new replies.