I have RSS links with date and title on the Front Page. What would be the best way to display the article summary, etc in local page, rather than going off-site to the source page. Create a session variable thats an array, rewrite the link to point to the local page, and pass the array position in the page link?
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
closed as not a real question by toscho♦ Jan 2 at 22:54
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Yes, the "easiest" is setting a session variable $_SESSION['rss'] = $RSS_ARRAY If you have problems passing your array, you can serialize the information using $_SESSION['rss'] = serialize($RSS_ARRAY), and using unserialize() when reading it in the new page. You can also store in database. That'll surely help you passing data. |
|||
|
|