tags:

views:

20

answers:

1

Hello everyone

I'm having this situation:
In a Wordpress blog I have my main navigation persisting of categories. The navigation is being created with wp_list_categories().

Now I'd like to mingle just one link to a page at a certain position within this navigation built of only categories.

Any ideas how I could accomplish this?

Thanks a lot!
sprain

A: 

Use http://codex.wordpress.org/Function_Reference/wp_list_pages and exclude the pages you don't want in the menu:

<php wp_list_pages(title_li&exclude=X;);?>

where 'X' is the id number of the page you want to exclude. Or use a plugin like Exclude Pages.

Do the same with http://codex.wordpress.org/Template_Tags/wp_list_categories to split the category listings and put the page listings within the category menu.

Use Reveal IDs for WP Admin « WordPress Plugins to find page IDs.

songdogtech
Ok, I knew there was no easy solution :) I'll try this, thanks!
sprain