Nav menu order.
-
Hello. I am having trouble trying to arrange my menu list in a specific order.
I would like it to display in the order below with an em dash in the middle to separate them:
Projects — Information — News
How can I do this?
This is the code I have.
— <?php $links = get_pages(); foreach($links as $i => $page) $links[$i] = ' <li class="page-' . (is_page($page->ID) ? 'active' : 'item') . '"> <a href="' . get_page_link($page->ID) . '" title="' . attribute_escape(apply_filters('the_title', $page->post_title)) . '">' . apply_filters('the_title', $page->post_title) . '</a></li> ';echo implode(' — ', $links); ?> — <a href="#" class="show_hide">Information</a>
My website is https://edwardgyngell.com
Thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Nav menu order.’ is closed to new replies.