Hi,
It won't be easy, please edit News/gavern/helpers.layout.fragments.php (around line 312) and after this code:
- Code: Select all
<li class="tags">
<p><?php _e('Tagged under:', GKTPLNAME); ?></p>
<?php echo $tag_list; ?>
</li>
You can add your text:
- Code: Select all
<li class="tags">
<p>Your text</p>
</li>
But in this case it will be only constant text.
Generally this kind of cusotmization is beyond our technical support, but you can try to use custom fields in your posts, e.g. add new custom post field - source and value:
http://www.yoursource.com (you can easily edit this custom field in each post).
Then instead my earlier code use this one:
- Code: Select all
<li class="tags">
<p><?php echo get_post_meta( $post->ID, 'source', true ); ?></p>
</li>
and around line 270, change global $tpl into
- Code: Select all
global $tpl, $post;