Heya, I have a wordpress site, im searching for dropdown menu for categories which shows latest/popular blog posts in drop-down of that category. That too automatically, no manually adding pages/posts to drop-down. I want to know if thats possible? you can check this site for example http://goo.gl/99xhs Code (markup): will wait for reply.
Hi coolraghav, WordPress function is available for implementing WordPress category drop down menu.. Please use <?php wp_dropdown_categories( $args ); ?> function example : <li id="categories"> <h2><?php _e('Categories:'); ?></h2> <form action="<?php bloginfo('url'); ?>" method="get"> <div> <?php wp_dropdown_categories('show_count=1&hierarchical=1'); ?> <input type="submit" name="submit" value="view" /> </div> </form> </li>
You can place this code where you want to show the dropdown.. For more details regarding to this function please check here http://codex.wordpress.org/Function_Reference/wp_dropdown_categories