Return to Snippet

Revision: 18217
at September 23, 2009 16:03 by paulgrenwood


Initial Code
<?php $series= get_post_meta($post->ID, 'Series', false); ?>
<h3>Also in this series:</h3>
<ul>
<?php foreach($series as $series-post) {
echo '<li>'.$series-post.'</li>';
} ?>
</ul>

Initial URL


Initial Description
This is something that I wished I’d thought of a long time ago – show other posts in the same series using not a plugin but custom fields. All you’ve got to do for this trick to work is create a custom field ‘Series’ with a link to each other post in the series. Each post must be a seperate custom field. Then, use the code below to display all the other posts in the same series!

Initial Title
Custom Fields - Create a Post Series

Initial Tags
wordpress

Initial Language
PHP