I had the same problem, but with a newer version of WordPress (3.7.1).
On pages with custom taxonomies of custom posts, the wp_nav_menu was not shown. The solution below worked for me.
in functions.php of the theme:
add_action( 'pre_get_posts', 'my_pre_get_posts' );
function my_pre_get_posts($query) {
if ($query->get('post_type') === 'nav_menu_item') {
$query->set('tax_query','');
}
}
Related Posts:
- Get all first images of posts in same category
- Get the children of the parent category
- Check if current category has subcategories
- Main menu not appearing on category pages
- wp_update_nav_menu_item() to insert categories
- How to get the url to tag & category base set by the user?
- Why adding Categories does not auto refresh in Backend while using my custom theme?
- Is it possible to put next and previous category links?
- is_archive() content being shown instead of is_category()
- Previous/next link to post in category, NOT tag?
- Retrieve all posts within tag OR category?
- Edit the markup of categories list
- Multiple menu items highlighted
- wp_nav_menu not highlighting the current category when viewing a single post
- New Theme creation
- Open subcategories in submenu on click in primary menu
- How to get data about category in category.php
- editing fonts of category links from the_category() funtion
- How to check category of of custom post type or not
- Set a them for all subset of category
- How to display only posts assigned to a particular, isolated, subcategory
- How to call custom category field data in theme?
- Checkboxes in the category list?
- Different templates for different category tags
- Restoring default article pagination on archives – Removing custom limits
- previous/next_post_link in the same sub-category?
- Why category.php throw 404 in wordpress while calling paginate_links()?
- Create menu / submenu from category subcategory and posts
- Woo Framework: woo_cat_featured not populating
- Inside a loop, how to change CSS class based on category name?
- How to display numbered pages in a category
- Question on using custom structures for categories
- Give Children Unique ID’s
- Getting the category title / description returns first matching post?
- Allow user to select categories that will display in post loop
- Insert HTML content in WP Query at specific point
- How do I retrieve the category ID (ugly permalinks) in my sub-navigation menu?
- Category page returns 404 error
- Multiple categories for one menu item?
- Show post categories
- Add description to categories menu in admin
- filter a loop base on specific category
- Problem with multiple loops in wordpress theme
- How to add icon over specific thumb
- How to differentiate the homepage structure from the category page structure in WordPress template?
- How to detect /category and /tag base pages?
- Global navigation in multisite: problem with categories
- WooCommerce shared categories
- display specific category when website loads
- Show the number of the post
- Products category search not working
- In if…else condition, the else statement shows even if if statement is correct
- Can’t display posts by filtering categories using isotope.js
- How to add all subcategories as submenu in WordPress menu
- Next and previous links category infinite loop
- omit categories from main navigation menu
- Media Library Categories
- How can I add HTML classes for current taxonomy/term hierarchy into my pages to simplify styles?
- Change single.php template based on parent category
- Show posts from all categories
- Loop within category’s posts
- Grouping parent categories into sections
- If it is a top level category show children otherwise show sibling categories
- A simple question regarding tags and categories
- Lowest catagory link
- get_adjacent_post_link excluded_terms ignored
- Transfering static site to wordpress and retaining category by month paginations
- How to get multiple loop in category.php, my scripts becomes madness
- Category base 404 – fix
- altering theme – content generated by PAGES not PORTFOLIO
- Post in multiple categories do not include in previous / next post if one category in excluded
- Category Archives: Show posts categorized in parent category only
- WordPress 3.5 how to determine if user is on category listing or category edit screen?
- Display only one level subcategory in wordpress
- How can i hide the authors box from a specific set of categories and post types?
- In category.php I need to get the next 10/previous 10 posts
- How to display the category featured images [closed]
- How to make /category/ URL load properly instead of 404 error?
- Get top parent category
- Load categories with ajax
- Optimal way to redirect home page to category archive?
- Excluding a category from next and previous post links
- Query the Loop without breaking it
- How to list categories and subcategories in JSON format?
- Arguments ignored/markup changed in wp_nav_menu if no menu is selected
- how to show the post category name
- Find out which user created a category or tag?
- Include WooCommerce product to all child categories
- Category url generate 404 error
- Style a category from category list
- Adding a page summary to a specific page
- Add a category on all archive category pages
- I need advice on how to structure the categories according to the layout i have
- How to set acf color field as background color to product category
- Category pages resolving with and without category prefix
- Is there a way to allow users to customize their feed view?
- Number of categories slowing down the site
- Replace category titles inside RSS feed
- Elementor : display only one category in loop grid
- How can I filter Query Loop to show only posts in current category?