I am coming here for advice mainly, because I am stuck on what to do next. Within my latest project, I am using WordPress at the backbone, as a fully fledged CMS system. I have styled every single page, and the theme is looking great! One problem however:
I am going to be posting not so news-y posts as guides, information and video compilations. I don’t want to be adding hundreds of wordpress pages, I would much prefer have posts categorized and then display them in the navigation.
Yep, that is the problem. I am just wondering if it is possible to, without much code, and without hacking away at core files, be able to have the navigation like this:
- Home
- Guides
- Posts in the Guides category displayed
- Videos
- Posts in the videos category displayed
I wouldn’t want this for every single category however.
So how long would this take me, would it require much coding and is there already and existing plugin that does this?
Thanks!
It shouldn;’t be so hard. All you have to do is to use
wp_get_nav_menu_items
filter.This will add 10 posts to submenu of item which title is equal to ”.
Then you should also take care of
current
classess, I guess.I think this isn’t able to do without (much) coding, check this URL. http://codeseekah.com/2012/03/05/list-all-posts-in-wordpress-navigation-menu/