Simple Draft List

Artiss Draft List (formerly Simple Draft List) will display a list of the titles of your posts/pages that have not yet been published.

Description

Artiss Draft List (formerly Simple Draft List) is a powerful method of showing draft and scheduled posts and pages on your site. Use it to show your visitors what's "coming soon" or as a great SEO tool.

You can display this information using a widget, shortcode or elsewhere in your theme using a PHP function call. Other options include:

  • Output via sidebar widgets, shortcodes or PHP function calls
  • Configure your own look by using a template
  • Show an icon on scheduled posts
  • The resulting list is cached for streamline performance
  • Meta box in editor allows you to omit individual posts from the lists
  • Only show drafts within a particular timeframe
  • Sequence the draft list in title, created date or modified date order
  • Fully internationalized ready for translations. If you would like to add a translation to his plugin then please contact me
  • And much, much more!

Other plugins are available to do this but none are as powerful as Artiss Draft List.

Using a PHP Function Call

You would use this option is you wished to display the list outside of a page or post - e.g. in a sidebar. To display the list you will need to insert the following code, where appropriate, into your theme…

<?php draft_list( 'template', 'parameters' ); ?>

Where template is a default layout (see Templates section below) and parameters is an optional list of parameters, each seperated by an ampersand (&)

The following parameters are valid...

  • limit= : The maximum number of draft items to display. The default is 0, which is unlimited.
  • type= : This allows you to limit the results to either post or page. The default is both.
  • order= : This is the sequence that you'd like to order the results in. It consists of 2 codes - the first is either t, m or c to represent the title, modified date or created date and the second is a or d for ascending or descending. Therefore order=td will display the results in descending title sequence. The default is descending modified date.
  • scheduled= : If specified as No then scheduled posts will not display in the list, only drafts.
  • folder= : The scheduled icon will be, by default, the one in the plugin folder named scheduled.png. However, use this parameter to specify a folder within your theme that you'd prefer the icon to be fetched from.
  • cache= : How long to cache the output for, in hours. Defaults to half an hour. Set to No to not cache at all. Whenever you save a post any cache will be cleared to ensure that any lists are updated.
  • template= : This is the template which formats the output. See the section below on * *Templates** for further information.
  • date= : The format of any dates output. This uses the PHP date formatting system - read here for the formatting codes. Defaults to F j, Y, g:i a.

To restrict the posts/pages to a particular timeframe you can use the following 2 parameters. You simply state, in words, how long ago the posts must be dated for e.g. "2 days", "3 months", etc.

  • modified= : This reflects how long ago the post/page must have been modified last for it to be listed. For example 6 months would only list drafts that have been modified in the last 6 months.
  • created= : his reflects how long ago the post/page must have been created for it to be listed. For example 6 months would only list drafts that were created in the last 6 months.

The plugin will then display details of each draft item, depending on the parameters and template used.

An example would be...

<?php draft_list( '%ul%%draft% %icon%', 'limit=5&type=post&order=ma' ); ?>

This would display a list of up to 5 draft posts in ascending modified date sequence, with an icon displayed to the right of each if the draft is scheduled.

The following is an example of how it could be used in the sidebar, with a function_exists check so that it doesn't cause problems if the plugin is not active...

<?php if ( function_exists( 'draft_list' ) ) : ?>
<h2>Coming Soon</h2>
<?php draft_list( '%ul%%draft% %icon%', 'limit=5&type=post&order=ma' ); ?>
<?php endif; ?>

Using a Shortcode

Use this option to display the list within a post or page.

An example would be...

[drafts limit=5 type=post order=ma scheduled=no template='%ul%%draft% %icon%']

Parameters are listed with a space separating then, rather than the ampersand used before. Regardless, all the parameters used by the PHP Function are available with the shortcode.

Using a Widget

Sidebar widgets can be easily added. In Administration simply click on the Widgets option under the Appearance menu. Draft Posts will be one of the listed widgets. Drag it to the appropriate sidebar on the right hand side and then choose your options.

Save the result and that's it! You can use unlimited widgets, so you can add different lists to different sidebars.

Templates

The template parameter allows you to format the output by allowing you to specify how each line of output will display. A number of tags can be added, and you can mix these with HTML. The available tags are as follows...

  • %ul% - Specifies this is an un-ordered list (i.e. bullet point output). This MUST be specified at the beginning of the template if it is to be used.
  • %ol% - Specifies this is an ordered list (i.e. number output). This MUST be specified at the beginning of the template if it is to be used.
  • %icon% - This is the icon that indicates a scheduled post.
  • %draft% - This is the draft post details. This is the only REQUIRED tag.
  • %author% - This is the name of the post author.
  • %author+link% - This is the name of the post author with, where available, a link to their URL.
  • %words% - The number of words in the draft post.
  • %chars% - The number of characters (exc. spaces) in the draft post.
  • %chars+space% - The number of characters (inc. spaces) in the draft post.
  • %created% - The date/time the post was created.
  • %modified% - The date/time the post was last modified.
  • %category% - Shows the first category assigned to the post.
  • %categories% - Shows all categories assigned to the post, comma seperated.

If %ul% or %ol% are specified then all the appropriate list tags will be added to the output. If neither are used then it's assumed that line output will be controlled by yourself.

Omitting Posts/Pages from Results

If you wish to omit a page or post from the list then you can do this in 3 ways...

  1. By giving the post/page a title beginning with an exclamation mark. You can then remove this before publishing the page/post.
  2. The post and page editor has a meta box, where you can select to hide the page/post.
  3. You can add a custom field to a page/post with a name of 'draft_hide' and a value of 'Yes'

Licence

This WordPress plugin is licensed under the GPLv2 (or later).

Support

All of my plugins are supported via my website.

Please feel free to visit the site for plugin updates and development news - either visit the site regularly or follow me on Twitter (@artiss_tech).

For problems, suggestions or enhancements for this plugin, there is a dedicated page and a forum. The dedicated page will also list any known issues and planned enhancements.

Installation

  1. Upload the entire simple-draft-list folder to your wp-content/plugins/ directory.
  2. Activate the plugin through the 'Plugins' menu in WordPress.
  3. That's it, you're done - you just need to create a widget, add the function call or short code!

Frequently Asked Questions

I've been using this plugin before version 2.0 - do I need to change the code?

No, I've paid particular attention to backwards compatibility - if you have set up your blog pre version 2 then the code you used should operate the same. However, you won't be benefitting from caching and various other improved features, so please update your code as soon as you can.

Which version of PHP does this plugin work with?

It has been tested and been found valid from PHP 4 upwards.

Please note, however, that the minimum for WordPress is now PHP 5.2.4. Even though this plugin supports a lower version, I am not coding specifically to achieve this - therefore this minimum may change in the future.

Changelog

2.2.1

  • Bug: Removed some debug output

2.2

  • Maintenance: Updated clock icon
  • Enhancement: Added category and categories template tags

2.1

  • Maintenance: Moved default scheduled icon to its own folder
  • Enhancement: Added internationalisation

2.0.2

  • Maintenance: Removed dashboard widget

2.0.1

  • Bug: Fix caching problem that prevents edit links from working correctly

2.0

  • Maintenance: Renamed plugin and brought program coding standards up-to-date
  • Enhancement: Added new template system, allowing better control over output
  • Enhancement: Option to display modified and/or created date
  • Enhancement: Option to display word and/or character count
  • Enhancement: Draft posts/pages with no title are no longer displayed
  • Enhancement: Can now sort output by date created as well as the date modified
  • Enhancement: Meta box added to editor to allow post/page to be excluded from list
  • Enhancement: Output is now cached (and cache times are adjustable)
  • Enhancement: User can now limit time period over which drafts will be displayed
  • Enhancement: Added validation of the passed parameters
  • Enhancement: New widget option added
  • Enhancement: Added improved clock image
  • Bug: Alternative icon folder option now works

1.6

  • Enhancement: Draft titles now have links to their edit page if the current user is allowed to edit them

1.5

  • Maintenance: Code tidy
  • Enhancement: Added option to show post/page author
  • Enhancement: Added version details to code output
  • Enhancement: Added shortcode option

1.4

  • Enhancement: Added icon for scheduled posts (which can be modified and switched off, if required)

1.3

  • Enhancement: Date order now displays according to date of last modification

1.2

  • Enhancement: Now displays scheduled posts as well
  • Enhancement: Added new parameter to suppress scheduled posts, if required
  • Bug: Fixed bug in limit default

1.1

  • Maintenance: With the release of WP 3.0 different post types are possible and these can get mixed in with the results (e.g. menu items, etc). Changed the code to restrict output to pages and posts only

1.0

  • Initial release
[mantis]Artiss Draft List[/mantis]
Loading Facebook Comments ...

6 Thoughts on “Simple Draft List

  1. Pingback: Simple Draft List | Eklenti.net > Wordpress Eklentileri

  2. Pingback: Wp Gelecek Yazıları Gösterme Eklentisi - | Netcambazi.Com

  3. Jos Velasco on October 6, 2010 at 4:35 pm said:

    Hello:

    I wish to add this plugin to a WP page via shortcode.

    Are you planning this feature?

  4. Jos Velasco on November 11, 2010 at 9:34 pm said:

    Do you think it could be possible to add the author aswell?

    Regards

2 Pings/Trackbacks for "Simple Draft List"
  1. Simple Draft List | Eklenti.net > Wordpress Eklentileri says:

    [...] Eklenti Ana Sayfası [...]

  2. Wp Gelecek Yazıları Gösterme Eklentisi - | Netcambazi.Com says:

    [...] Eklenti Ana Sayfası [...]

Top
%d bloggers like this: