• Resolved enigmasolution

    (@enigmasolution)


    Hello guys !
    On my WordPress blog, I would like to add a plugin that will display all the tweets that are created by a specific twitter account. That twitter account would not be mine. Any idea? All the plugins I have found so far would allow me to display the tweets from an account that is mine.
    Thanks !
    Nancy

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator Kathryn Presner

    (@zoonini)

    You don’t need a plug-in. Just use this code:

    <script src="https://widgets.twimg.com/j/2/widget.js"></script>
    <script>
    new TWTR.Widget({
      version: 2,
      type: 'profile',
      rpp: 4,
      interval: 30000,
      width: 250,
      height: 300,
      theme: {
        shell: {
          background: '#333333',
          color: '#ffffff'
        },
        tweets: {
          background: '#000000',
          color: '#ffffff',
          links: '#4aed05'
        }
      },
      features: {
        scrollbar: false,
        loop: false,
        live: false,
        behavior: 'all'
      }
    }).render().setUser('twitteruser').start();
    </script>

    Replace twitteruser in the last line with the actual Twitter username of the account whose tweets you want to display.

    Moderator Kathryn Presner

    (@zoonini)

    You can also edit all the hex colours as you wish, of course.

    Thread Starter enigmasolution

    (@enigmasolution)

    Thanks a lot !! It works well !!!
    Do you know the same kind of widget but for a facebook page? I mean to display on my wordpress site everything that gets written onto a Facebook page.

    Moderator Kathryn Presner

    (@zoonini)

    I don’t know whether it’s possible. I suggest you post that question in a separate thread and maybe someone else can help. Good luck.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Plugin to display someone's twitter tweets’ is closed to new replies.