• Kind of a noob question, right now my WordPress gathers feeds from other sources and consolidates them on the homepage. Currently, when you click a post on the index, it opens the post within my page using the link returned by the the_permalink() function. But what I want it to do is, when you click on the post on my index page, it opens the site that the feed came from. But I don’t know a function where I can get the URL of the page where the feed comes from. Can someone please help?

Viewing 1 replies (of 1 total)
  • What do you use to bring in the rss feeds?

    I use feedwordpress plugin which offers me the ability to use custom fields to access the data, which I then use like:

    <a href="<?php $key="syndication_permalink"; echo get_post_meta($post->ID, $key, true); ?>"><span class="continue">Read the Full Story Here &raquo; </span></a>

    to link my Read full story to the original site

Viewing 1 replies (of 1 total)
  • The topic ‘Link To URL From Feed’ is closed to new replies.