New Posts
Live Radio
Welcome guest, is this your first visit?
  • Login:
Affiliate Guard Dog
+ Reply to Thread
Results 1 to 1 of 1
  1. #1
    #!/usr/bin/mikebrad
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    USA
    Posts
    697
    Feedback Score
    8 (100%)

    Default Twitter Wordpress Freebie

    This is just a little snippet that I wrote last night and decided to share. Basically, what it does is takes the latest tweet from someone's twitter account and posts the text on your wordpress post or page.

    In order to use this, you need to:

    1. Add this code to your functions.php file within wordpress, making sure it's within the php section.
    2. When you want to display the tweet, use the code [twitter pro="pokerprosnamehere"] within your post or page.

    PHP Code:
    function get_twitter($atts$content null) {
        
    extract(shortcode_atts(array(
            
    'pro' => 'no foo',
            ), 
    $atts));
    require_once(
    ABSPATH 'wp-includes/class-snoopy.php');
    $snoopy = new Snoopy;
    $atts $atts['pro'];
    $snoopy->fetch("http://twitter.com/statuses/user_timeline/$atts.json?count=1");
    $twitterdata json_decode($snoopy->results,true);
    echo 
    $twitterdata[0]["text"];
    }

    add_shortcode('twitter''get_twitter'); 
    I think this could be useful on a profile type page, as one example. Oh, and if you want to display more than one tweet, change count=1 to whatever number, up to 200.


 

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Twitter Question
    By GFPC in forum Poker SEO Forum
    Replies: 8
    Last Post: 03-18-2010, 06:16 PM
  2. I don't understand twitter
    By pokerprop in forum PAL Coffee Shop
    Replies: 21
    Last Post: 04-10-2009, 12:15 PM
  3. Twitter
    By MJ in forum General Poker Affiliate Forum
    Replies: 7
    Last Post: 03-25-2009, 04:11 PM
  4. Best Twitter plugin for WordPress
    By Georgia Poker in forum Wordpress - Web Design - Coding - Technical
    Replies: 1
    Last Post: 01-21-2009, 08:23 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Powered by vBulletin® Version 4.1.5
Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
SEO by vBSEO 3.6.0
Affiliate Program Consultant