Welcome to Dagon Design. In addition to free scripts, WordPress plugins, and articles, we offer a variety of services including custom theme design, plugin creation, and PHP scripting. Contact me for more information.

Version 1.33   Updated Monday, July 6th, 2009 at 6:18pm

Drop-Down Post List Plugin for WordPress

This plugin allows you to easily display drop-down boxes containing the posts for specified categories (or all categories). You can use this plugin by entering the trigger text in a post or page, or by adding the function call directly to your theme files. You can display as many drop-down boxes as you like, and you have a choice between a standard select box (with button), or a ‘jump menu’ (as the visitor clicks on a post, they will immediately be taken to that page without having to click a button). Other options are also available.

Download

  If you have found this page useful, please consider donating. Thanks!

Demo

This is a generated drop-down post list, listing the posts of a particular category:

Topic: WordPress Plugins and Mods


Installation

  • Download the above file, rename it from .txt to .php, and upload it to your plugins directory
  • Enable the plugin
  • Configure the plugin under the DDPostList options page

Usage

There are two ways you can use this plugin.

Note: In both examples below, replace # with the category ID you want to list posts from, or use the word all to display posts from all categories.

1) In a post or page:

<!-- ddpl # -->
<!-- ddpl all -->

2) In a template file::

<?php echo ddpl_list(#); ?>
<?php echo ddpl_list('all'); ?>

Change Log

  • 07-09-09 Version 1.33 – Added method to display posts from all categories. Changed the way the WP version was being detected for calls to the database.
  • 02-17-09 Version 1.32 – Small change to produce valid xhtml when using more than one drop-down on a page
  • 08-12-08 Version 1.31 – Small change to produce valid xhtml
  • 09-27-07 Version 1.3 – Updated to work with WordPress 2.3. Added ‘Load Default Options’ button
  • 08-01-07 Version 1.2 – Option added to specify default option in list
  • 07-29-07 Version 1.1 – More options added
  • 07-28-07 Version 1.0 – First release

Modifications

The code this plugin generates is fairly plain (no special formatting), but to make customization easy, the form has been assigned a CSS class: ddpl-form

For example, if you would like to set the width of the select field, add this code to your theme’s style sheet:

form.ddpl-form select { width: 200px; }

Options

Here are the current options available (found under the DDPostList options page)

Form Type – You can choose to have the plugin generate a ‘jump menu’, or a traditional list with a submit button

Default Option – If entered, this is the first option that will show up in the list (does not link to anything)

Button Text – If using a traditional list, this is the button text

Sorting Method – You can choose to sort by post date (ascending or descending), or post title

Post Limit – This allows you to define a limit for the number of posts in the list (0 for no limit)

Add Before Form – Code added here will be displayed before the generated form

Add After Form – Code added here will be displayed after the generated form

Add Before List – Code added here will be displayed before the list

Add After List – Code added here will be displayed after the list

Pages: « 9 8 7 6 5 4 3 [2] 1 » Show All

  1. Hi,

    I’ve been trying to get your plugin working here:
    http://wirelife.co.uk/?page_id=7

    But it doesn’t seem to be working. If you could help me i’d be very grateful.

    Regards,
    Davthalas

  2. I can change the list name, or what’s supposed to show in the box first… such as (Choose One)… but nothing shows there. It is always just the first item / page that shows up. How can I make the first thing be the (Choose One)?

  3. Is there anyway to change the List name

    For example the defautlt is set to “Select a Post” I tried searching in the plug in to change to a different text like “more posts here”

    But cant figure out how..

  4. Let me add my voice to those asking for a way to use this plugin to display all posts from all categories. That would be a huge help!

  5. Was I-O’s question ever answered? I have the same question. What happened to support for this plug in.
    I would like to display the drop down list at the bottom of my individual category pages.

    EG// say I have 3 categories Parties, Recipes and Events when you click on these the first 5 posts for each are displayed and at the bottom is the drop down list for all of them…I tried pasting it into category.php and got a blank page.

  6. Hi, when I try to download the plugin on this page, it doesn’t work

  7. Is there a way to set a variable for category ID so you can inset the code in the single post template and it automatically checks the category ID and displays those posts in the drop down?

  8. I can’t get the “Default Option” to show up on the form.
    Any ideas why?

  9. 22
    reagan

    Does it support Pages?I want to have a dropdown list for PAGES too.

  10. i got a problem when i activate this plugin….

    when i activate this plugin, visual editor tab will be disabled in my write page….. what can i do????

  11. 20
    Alvin

    Hi,

    I’m very new at wordpress.. how do you make it appear like what’s on http://www.hernadezlife.com? Its basically sitting on the right hand sidebar with a title called All Entries.

    Thanks

  12. the code form.ddpl-form select { width: 200px; } doesn’t work

  13. 18
    Johnny

    sorry…forgot to wrap the code

    <?php echo ddpl_list(#); ?>

  14. 17
    Johnny

    pasting in

    gives me a syntax error?

    Parse error: syntax error, unexpected ‘;’, expecting ‘)’ in….

    i am pasting it into my sidebar.php page

    weird?

  15. I realize that it is possible to setup several of your tags to display all posts from all categories,… but can you setup just one tag to display all posts from all categories?

    Sorry,… I don’t believe that I was specific enough with my previous post on this subject.

Pages: « 9 8 7 6 5 4 3 [2] 1 » Show All

Leave a Comment

Before you comment: If you are having an issue with a script, please make sure you have read the entire article. Also, please read through the comments because most common issues have already been discussed many times. Thanks.


Be sure to wrap all code in <code></code> tags.