The fetch-feed tag has no wiki summary.
3
votes
3answers
514 views
Refresh external feeds only in cron?
Is there an easy way to ensure that external feeds (via fetch_feed()) are only fetched via cron, and not when a regular user visits the site? This is for performance reasons, I want to minimize the ...
2
votes
1answer
843 views
Troubleshooting fetch_feed and SimplePie
I've got a very basic solution using fetch_feed() and SimplePie to pull in RSS items which is working on my localhost, but for some reason is_wp_error() persists as true on the live server. Is there ...
2
votes
1answer
1k views
Combining multiple RSS feeds using fetch_feed
I'm using fetch_feed to display an rss feed on a theme i'm working on.
I think the documentation implies that you can combine multiple feeds, can anyone confirm this, ideally with an example.
Thanks ...
2
votes
2answers
3k views
How to get a post content from another wordpress blog/site?
I have a situation where i need to display posts from a specific category from another wordpress site into my wordpress site.
Both are my sites and i thought of creating a page specially for this in ...
2
votes
1answer
104 views
fetch_feed: retrieve entries in the appearing order, not chronologically
I'm using WP function fetch_feed to retrieve a feed and display its items.
<?php
/* include the required file */ include_once(ABSPATH . WPINC . '/feed.php');
/* specify the source ...
1
vote
1answer
143 views
wp_remote_get vs. fetch_feed ? which is the better for performance?
I m trying to share my web site contents for other web sites using by external loop file or rss file.
when i asked some questions about wp_remote_get function ; @Serkan suggest to me , using ...
1
vote
1answer
145 views
Scheduled event does not run at midnight
I have an event scheduled to fetch feeds from different sources at midnight. I believe for some reason it is not being triggered. I use Core Control plugin for testing. When I 'Run Now' through it, ...
1
vote
1answer
219 views
placement of wp_error with fetch_feed
This might be really simple, but I'm pretty hopeless when it comes to rss and WP. Where should I put the if ( is_wp_error( $feed ) ) { in a code like this:
<?php
$rss = ...
1
vote
2answers
478 views
How to set the cache for the built-in SimplePie feed parser?
I'm using the built-in SimplePie, AKA fetch_feed(), to retrieve a feed, and I want to be able to adjust the cache time from an admin menu. SimplePie itself is well documented, but not so much the ...
1
vote
1answer
186 views
combine multiple feeds with fetch_feed and display blog titles for each item?
I'm trying to display multiple feeds using the fetch_feed function. Its working well thus far except I can't figure out why the title for each individual rss feed will not show up.
Here is my code:
...
1
vote
1answer
60 views
How do I get link URLs from the Wordpress links backend into an array?
I'm currently running a blogroll on a site I'm working on by defining a variable with an array that has all the rss feed urls I want to pull from. Like this for example:
<?php // Get RSS Feed(s)
...
1
vote
1answer
149 views
Combining RSS Feeds and Sorting with fetch_feed
I'm trying to create a feed of the most recent 10 posts from 5 different feeds all combined into one list. I found a way to combine the feeds but have not been able to easily limit them to 10 and sort ...
1
vote
1answer
332 views
Add a Post Thumbnail to an RSS Feed with custom size
I have two different blogs on the same domain and my goal is to get the 3 latest posts from blog1 to show on the home page of blog2. Everything goes well following these instructions: ...
0
votes
2answers
97 views
Disable Outbound Web Requests
I've setup wordpress on AWS. I want to reduce as much network traffic as possible. What services/jobs do I need to disable in Wordpress?
0
votes
1answer
800 views
Getting Thumbnail in fetch_feed from custom field
i have setuped showing rss from my network site using fetch_feed();
include_once(ABSPATH . WPINC . '/feed.php');
$rss = fetch_feed('rss link here');
$maxitems = $rss->get_item_quantity(5);
...
0
votes
3answers
318 views
Unable to display favicon using get_favicon()?
I'm using fetch_feed (based on Simplepie) to display an array of RSS feeds (favicon & headlines only). Documentation on the simplepie website says to use get_favicon in the stylesheet. And I'm ...
0
votes
3answers
364 views
Passing feed URLs with “&” to fetch_feed()?
How do I pass feed URLs with & in the URL to fetch_feed()?
The feed is not parsed correctly if there is a & in the feed URL. Actually it works in the example I gave, but now I'm populating ...
0
votes
1answer
120 views
Aspx/Rss feed - failed to open stream: Redirection limit reached
I have this issue ive been stuck with now. Its when i load a page that have a feed.
I put the feed in wp-admin , this usually work with other feeds but not sure why its not working with this kind of ...
0
votes
1answer
260 views
Showing RSS feed via fetch_feed. How to show the site title of the feed?
Question is simple. Can i get the title and main url of the site from where the posts are loading? Actually i want to linked to the main site.
The url can be found by wordpress function esc_url(); ...
0
votes
2answers
155 views
Using links (link_rss field) as the source for fetch_feed
I am trying to display feeds from a couple of my blogs using the build in function fetch_feed() however I stumbled across a few problems.
I am storing the rss urls in the links section and will be ...
0
votes
0answers
19 views
fetch_feed custom post type and post_meta value
I found this is the wp forums: http://sample.com/feed/?post_type=book&genre=mystery
genre being a custom taxonomy. I need to grab a post type and limit it by a post meta value.
...
0
votes
2answers
56 views
How do I use fetch_feed() to pull in a large number of posts?
When I use fetch_feed() to pull in posts from a feed, even if I set the maximum posts variable to a very high number, it will only pull in 10 posts. I want to pull in all the posts and then paginate ...
0
votes
0answers
53 views
Read RSS feed of another wordpress site [closed]
I am trying to get an rss feed from another wp site I did and display it on a new site.
The url I cannot properly read (generates fopen error, and yes fopen is enabled via php.ini) is this ...
0
votes
0answers
5 views
Facebook. Fetch photos and post them to blog on the user side [duplicate]
Possible Duplicate:
Facebook plugin. Fetch photos - chose one - post to wordpress
So I'm looking for some plugin or solution to implement such function.
Fetch facebook photos (using json I ...
0
votes
1answer
145 views
Need correct results from 6 rss (fetch_feed)
I Just need some correct results from 6 rss feed
I am fetching 6 feeds and maked a news ticker bar at http://thehoopdoctors.com/online2/newfeed/
I am getting results from 6 rss feeds like
First ...
