I am looking for a plugin that will allow the addition of an attribution-type field to each post. Any suggestions?
I am looking for a plugin that will allow the addition of an attribution-type field to each post. Any suggestions?
If you don't find one, consider using Custom Fields.
how about just using custom fields?
http://codex.wordpress.org/Custom_Fields
and a simple example:
http://www.wprecipes.com/how-to-display-your-current-mood-on-your-posts
I ended up adding the following to index.php in the post footer:
<?php
$customField = get_post_custom_values("attribution");
if (isset($customField[0])) {
echo "<a href=\"$customField[0]\">Attribution</a>";
} else {
echo "No Attribution"; }
?>
and adding a custom field called 'attribution'. Works great!
This topic has been closed to new replies.