I’m using the custom menus in WP 3.3.1. I can drag a category into a menu and it creates a link to an archive page of all the posts form that category. Is there something I can put in the functions that forces a list of all the posts from that category instead?
So, I would end up with something like:
<ul>
<li><a>Category</a>
<!-- expander -->
<ul>
<li><a>Psot 1</a></li>
<li><a>Post 2</a></li>
<li><a>Post 3</a></li>
</ul>
</li>
</ul>
You can make walker class in functions.php
This is exaple in the end of walker with posts entry: