• Hi,

    I want to link back to my other wordpress blogs from the content of the post. But there is no such option in feedwordpress. Any help will be appreciated. The agregated feed post on the main blog contains a link to the original post of my satellite blogs.. I dont want the permalink to point to the original blog but a link inside the content should point to the blog.

    Please help !

Viewing 3 replies - 1 through 3 (of 3 total)
  • here is what i’ve used in the past:

    <?php
    	echo '<br /><br /> Written by '; the_author_posts_link();
    	echo ' at <a href="';  the_syndication_source_link(); echo '">';
    	the_syndication_source_link();
    	echo '</a>'
    ?>

    Is this code inserted into the template or somewhere in the plugin code?

    I am looking to have the rss feeds post to the blog automatically creating a new post – all already options available in feedwordpress.

    Then from the individual post pages, I want the posts to link to the source Article as I have requested feedback for here RSS Post link Titles.

    I will be looking into this myself and running some tests but any info would be greatly appreciated.

    I figured it out and thought I would share – used the following code in the post page theme file. So posts that were created through aggregation now display a link to the source site. Zen:

    <?php
    echo '';
    the_syndication_source_link();
    echo ''
    ?>'
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Feedwordpress permalink’ is closed to new replies.