WP Dropdown Posts Plugins
Sometime you want to display WordPress Posts list in a dropdown style just like WordPress Page does. Unfortunately this feature is not available in WordPress. But dont' worry guys, I have created a plugin for this purpose. WP Dropdown Posts will shows posts list in dropdown and if you click on an item, you will be redirected to that post.
WP Dropdown Posts
Author: takien
Contributors: takien
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=BL7ERUY46HPL8&lc=ID&item_name=WP%20Dropdown%20Posts%20Plugin¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
Tags: post, dropdown, jump, menu
Tested up to: 0.1
Stable tag: 0.1
This plugin will show post list as dropdown
Description
This plugin will show post list as dropdown just like wp_dropdown_pages, most parameter wp_dropdown_pages are accepted too.
Screenshot
Installation
1. Upload the 'wp-dropdown-posts.php' file to the '/wp-content/plugins/' directory
2. Activate the plugin through the 'Plugins' menu in WordPress
3. Paste the following code to your theme file, e.g in your sidebar.php
WP Dropdown Posts
<?php
wp_dropdown_posts('sort_column=post_date&sort_order=DESC&number=5');
<p>?> That will show latest 5 posts in dropdown.
Incoming search terms:
- wp dropdown posts
- wp dropdown
- Drop-Down Post List Plugin for WordPress
- wp_dropdown_posts
- dropdown posts
- wp_dropdown
- wordpress spry plugin
- show post on drop down categories
- wp archives dropdown
- wp archives dropdown code
See Also
Tags: dropdown posts, Plugins, Wordpress


WP Dropdown Posts Plugins
Nice plugin, man.
Thanks...
Hai,
Is it possible to choose / modify the number of characters in the Post title displayed in the dropdown box? I am working on a site for my friend, there some of teh posts have too lengthy characters, so the dropdown box exceeds the sidebar, so disturbs the whole layout.
Awaiting your fix on this issue
Regards,
Maheshwaran. I
Thanks Maheshwaran,
The plugin is now updated to version 0.2 with new parameter to cut long titles. Please see changelog in wordpress.org
And go to your dasboard to update.
Thank you.
is it possible to style it with scc somehow..?
would be really cool if u could give me some pointers.. maybe .class -es i need to look into?
do you mean CSS? it's okay. please search google about how to css..
hi there
its me again...
this is my third day browsing google for solution ...
i was trying to style it this way but no success... :S
http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/
actually i would love a final result like this examples ..
im kinda new to php.. maybe that's the problem..
can u please help me out here
i really appreciate your time..
that's all about CSS... please learn it.
sorry for late reply.. im so busy
thanksk for share
i really need this plugin for my blog
btw,,,nice theme here inspired from php.net
thanks
mangstab gan! ijin sedot ya..
silahkan gan
Is there a way to filter the dropdown to a specific category? It currently shows all of my posts; I would like only x category to appear within the dropdown.
Please refer to my reply to Petr below
Thanks
Hi, nice plugin! Is is possible to filter posts and display posts only from category Countries? Thanks!
Thanks Petr,
try this
<?php
wp_dropdown_posts('cat=country&sort_column=post_date&sort_order=DESC&number=5');
//where 'country' is cat slug for Country category
?>
OR
<?php
wp_dropdown_posts('cat=10&sort_column=post_date&sort_order=DESC&number=5');
//where '10' is cat ID for Country category
?>
Hi there,
The addition of cat= does not work; it is just pulling the latest posts, and not filtering by category. Can you look into the cat= functionality?
Thanks.