简体   繁体   中英

Wordpress: Mingle page with category navigation

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM