Make your RSS feed for linked-list posts behave like Daring Fireball's: item's RSS permalink goes to link, and other modifications.
linked-list.php to the /wp-content/plugins/ directoryPlugins menu in WordPress....the top part of a template....
<?php if (have_posts()): ?>
<?php while (have_posts()) : the_post(); ?>
<?php if (is_linked_list()): ?>
...other HTML formatting...
<a href="<?php the_linked_list_link()">This is a linked list link</a>
...other HTML formatting...
<?php else: ?>
...other HTML formatting...
<a href="<?php the_link()">This is a normal post link</a>
...other HTML formatting...
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
...the rest of the template...
is_linked_list() function to check, then alter your template the way you wish to make it look or act differently.get_the_permalink_glyph(), the_permalink_glyph(), get_the_linked_list_link(), the_linked_list_link() and get_glyph().
Requires: 2.7 or higher
Compatible up to: 3.1.4
Last Updated: 2011-6-19
Downloads: 2,109
Got something to say? Need help?