Random Posts: WordPress Plugin

Update

13th January, 2007

Random Posts Version 2.0.0 beta is now available. Largely rewritten, it includes some new options and many more possible styles of display. Version 2 now has its own page where future developments will be documented.

Comments are now closed for this post but can be added to the new page.

Version 1.04 just fixes two bugs. The Posts plugin were not working if more than one was installed! Also some users were getting odd characters appearing where they shouldn’t.
Version 1.03 allows some parameters (like ‘before_title’) to be blank, or to be more complex, e.g., 'before_title=

. Also allows trimming an excerpt so it ends with a word or a sentence and not in mid-word. NB excerpt_length is now counted in characters and not words as previously.
Version 1.02 fixes a bug with the option to show static pages.
Version 1.01 fixes bugs with default settings when Similar Posts is not also installed.
Adds the skip parameter to ignore a number of posts at the head of the list.

 

Description

Simply displays a list of posts chosen at random from your blog. Good for getting visitors to explore the depths of your site.

This plugin was designed as a cousin to Similar Posts. It will work fine on its own but if Similar Posts is installed Random Posts will take its settings from the Similar Posts options page.

Instructions

  1. Download the latest version of Random Posts.
  2. Upload the whole plugin folder (Random_Posts) to your /wp-content/plugins/ directory.
  3. Go to your Admin|Plugins page and activate Random Posts.
  4. Putat the place in your WP loop where you want the list of random posts to appear. By default the plugin wraps each post with
  5. and
  6. but that can be changed.
  7. The behaviour of the plugin can be adjusted in two ways. If Similar Posts is installed you can use its options page. Otherwise, a query-style parameter does the trick (see below).

Acknowledgements

Random Posts was inspired by Scott Reilly’s excellent Customizable Post Listings plugin.

Under the Hood

The way the list of random posts is displayed can be set from the Options|Similar Posts page (if it is installed). You can exclude certain categories of post, for example, or change the code that comes before and after the link.

These general options can be overridden in specific cases by passing a query-style parameter, e.g.:

<!--?php random_posts('limit=10'); ?-->
lists 10 random posts
<!--?php random_posts('none_text=sorry&#038;show_static=false'); ?-->
lists the default number of posts, excluding static pages, and specifies what to display if there are none

If you do not specify an option its value is taken from the options page.
This means you can use the template tag in different ways in different places.

The full list of parameters is as follows (with the default value in parentheses):

limit
maximum number of posts to show (5)
skip
how many posts to skip before listing (0)
show_static
include static pages (false)
show_private
include password-protected posts (false)
excluded_cats
comma separated list of categories to exclude (by ID) (9999, the default means none)
excluded_authors
comma separated list of authors to exclude (by ID) (9999, the default means none)
none_text
what to show if no posts match–can be plain text or a permalink
before_title
what to show before a link ()
after_title
what to show after a link()

trim_before
remove the first instance of ‘before_title’ (false)
show_excerpt
include a snippet of the post after the link (false)
excerpt_length
how long an excerpt should be (50 characters)
excerpt_format
‘char’, the default, does nothing, ‘word’ trims the excerpt to the last full word, and ‘sent’ to the full sentence. If the excerpt would be trimmed to nothing no trimming is applied.
ellipsis
add ‘ …’ after the excerpt
before_excerpt
what to show before an excerpt ()
after_excerpt
what to show after an excerpt ()

Feedback

If you try this plugin leave a comment here to let me know how you get on.

10 replies on “Random Posts: WordPress Plugin”

  1. inaz: Can you tell me the advantage of doing it that way around? I ask because there are certain problems with coding inclusion rather than exclusion.

  2. Line 153

    
    $output .= $p['before_title'] .'<a href="'. $permalink .'" rel="bookmark" title="'.__('Permanent Link: ') . $title . '">' . $title . '</a>' . $p['after_title'];
    

    Should be

    
    $output .= stripslashes($p['before_title']) .'<a href="'. $permalink .'" rel="bookmark" title="'.__('Permanent Link: ') . $title . '">' . $title . '</a>' . $p['after_title'];
    

    so that a call to the function like so:
    
    <?php random_posts('limit=5&before_title=<li class="page_item">'); ?>
    

    doesn’t yield an output of:
    
     <li class=\"page_item\">
    

    All in all, great plugin. Thanks!

  3. Lior C: Thanks for the report. I’m fixing it. The PHP function I was using, parse_str, wasn’t designed to handle arguments with extra ‘=’ in them and was throwing in many extra slashes. I’ve written my own parsing routine which seems to work well … but I’ll test a bit more before releasing it.

Comments are closed.