Page is a not externally linkable
tlainevool - 1:14 am on Oct 18, 2012 (gmt 0)
This sounds like a perfect use of Custom Fields, see the wordpress docs here: [codex.wordpress.org...]
You'd probably need to get a bit more into the code than just using the_meta() function as explained on that page, but you could do something like:
<div class='source'>
<span class='source-title'>Source: </span><span><?php echo get_post_meta(get_the_ID(), "Source", true)' ?></span>
</div>
This code would go at the bottom of the loop in your template code, see: [codex.wordpress.org...]