Hi there,
I have some posts on my blog that are published via an rss feed, I would like to be able to quote the source of the posts automatically, but i am not sure where to include the code.
The code I have found is the following:
<?php if (is_syndicated()) : ?>
<?php $title = get_syndication_source(); ?>
<p class=”source”>This syndicated post originally appeared at <a
href=”<?php the_syndication_source_link(); ?>”><?php
print htmlspecialchars($title); ?> on <a
href=”<?php print get_syndication_permalink(); ?>”><?php
the_time(‘j F Y’); ?></p>
<?php endif; ?>
Usually this should go in content.php after the_content, however I am not sure where to place this in the Interface Free Theme code. Is there a way to include it?
Thank you in advance!
Edo