- This topic is empty.
-
AuthorPosts
-
February 25, 2011 at 7:39 pm #31778
mwdewitt
MemberI am trying to create a Twitter feed on my WordPress page and I am using the Twitter RSS URL to grab the feed. The only problem is, it is showing the author of the feed, because it considers the Twitter comment and the author to be both part of the title, and I do not want that. I just want to show the comment. Here is an image with the author’s name circled in red:
http://img199.imageshack.us/img199/197/screenshot10s.png
And here is the code I am using (excluding the RSS URL):
$feed = fetch_feed('');
$limit = $feed->get_item_quantity(2);
$items = $feed->get_items(0, $limit);
if (!$items) {
echo "problem";
} else {
//everything's cool
foreach ($items as $item) { ?>
get_date('F j, Y'); ?>
get_title(); ?>
} ?>
So how do I remove the author of the Twitter feed when it is considered part of the title? Thank you in advance.
February 25, 2011 at 10:59 pm #58135Roxon
MemberYou’ll have to use Twitter API as opposed to an RSS feed.
February 26, 2011 at 8:26 am #58114davidlab.be
ParticipantYou can also check out http://tweet.seaofclouds.com
I use it all the time…easy to use and customize!February 26, 2011 at 12:07 pm #58036mwdewitt
Member@Roxon: I am very new to all of this. I have to say I did not understand much of what Chris was talking about in your link. If I give you the URL to the Twitter feed I want to use, could you be so kind as to make the hack that I need to use for my WordPress page? I would really appreciate it. The Twitter page I am linking to is:
http://www.twitter.com/acidhousestudio/
@springlab: Your link seems very similar to what Roxon suggested. It is also using jQuery and JSON, which means I have no clue what to do. Heh, and yes, I am new to all of this.Thanks to both of you for trying to help me!
February 26, 2011 at 12:16 pm #58026chrisburton
Participantseaofclouds is what I use. Simple integration, style it as needed.
May 22, 2013 at 4:53 am #135984derElch
Participanthello…
i know this is an old topic (from 2011) but i think this is the most one to continiue a discussion about twitter feed integration. i dont want to open a new topic if we already have a few about this point.
i’m searching a good customizable twitter feed for my website. it shouldn’t be a plugin for wordpress or else (yes my site is running with wordpress but i want to integrate the feed without a plugin an on sites without wordpress too)
my ideas are going in these direction like on these websites: [Radio Basilisk](http://basilisk.ch “Radio Basilisk”) (see under the navigation) or [Battlelog News](http://battlelog.battlefield.com/bf3/de/news/view/2925730255797502208/ “Battlelog News”) (see in the footer on the right side)
should i use the official Twitter Feed (https://dev.twitter.com/docs/embedded-timelines) with my own costumization options or an unofficial script? i’m asking because i’ve readed in the past that twitter will close their RSS Feed, which will make a lot of scripts unworkable, is that right?
i’ve searched already a lot in the web, but never found something which is what i wanted, so thatswhy i’m interessed in your opinion, which scripts are you using? which shouldn’t i? or do you know good documentations about the Twitter API?
would be happy about every answer and help =) greetings from switzerland ^^
June 2, 2013 at 10:13 am #137334derElch
Participantany ideas?
-
AuthorPosts
- The forum ‘Back End’ is closed to new topics and replies.