Wordpress Navigation
Posted
by James Pellerano
on Stack Overflow
See other posts from Stack Overflow
or by James Pellerano
Published on 2009-11-20T00:10:56Z
Indexed on
2010/04/13
2:02 UTC
Read the original article
Hit count: 368
php
|navigation
I am working on a Wordpress Theme, I need to work on the navigation, I am having a little trouble creating it.
The navigation I am looking for looks like this: www.neu.edu/humanities.
I have gotten this far:
if (is_front_page()) {
wp_list_pages('title_li=&exclude=12&depth=1');
}
else {
// display the subpages of the current page while
// display all of the main pages and all of the
// and display the parent pages while on the subpages
}
© Stack Overflow or respective owner