Posts Tagged ‘twitter’

How to integrate wordpress with twitter?

How to integrate wordpress with twitter?

February 12, 2010 |  by Mukesh Chapagain  |  No Comments
d96b44e175ffc5bf9b6802897a1304e0 Del.icio.us

By integrating, I mean to say about posting your blog topics and links to twitter status. In other words, it’s about publishing your wordpress articles as tweets in twitter.

I don’t mean the entire article content coz twitter only allows 140 chars max :) I just mean publishing your article title and link to twitter.

Here is an awesome wordpress plugin which lets you post your wordpress article to your twitter status automatically. It’s called WP to Twitter.

It has very good options to be selected. You can tweet whenever your post is published. Or, even when your post is being edited. You can also tweet whenever your wp pages are published or edited.

The prominent feature I like about this plugin is that it lets you post your wordpress article’s content as tweet by setting character limit. Moreover, it publishes your wp article tags as hashtags in twitter.

The URL Shortener is always there. You can do with Cli.gs, Bit.ly or use wordpress as url shortener.

This plugin is very beneficial and is a must if you are a twitter user or a twitter fan lik e me :)

Keep blogging and keep tweeting…

Cheers,

How to get Twitter Follower Count in WordPress?

February 7, 2010 |  by Anish Blon  |  No Comments
ebeceff492d8b49adac3555c40940c07 Del.icio.us

I am neither the first nor the last one that will be writing about placing twitter follower counter in webpage. Though there already exist many widgets anyone can easily use and customize; see here and here; But those widgets have limited options in terms of color, layout and moreover they have their info attched (somewhere) in widget which does not feels good. Here’s my attempt on how to get follower count in twitter using PHP.

Read More

Tweet while browsing

January 9, 2010 |  by Mukesh Chapagain  |  No Comments
9d78d1f05d9b13f78f05941aa46b49be Del.icio.us

Scenario:

You are browsing the web. You liked a url and wanted to share it, probably on twitter.

The old lengthy way:

You will open twitter.com, login with you username and password. Open url shortner like bit.ly and shorten the url you want to share. Then post your tweet with some text and shortened url.

The new and quick way:

You can do the same very easily and quickly. I hope you are using Firefox. So, there is a firefox addon Shorten url which will shorten the url and display the result in location bar. It supports more than 100 URL shorteners.

You can always remain logged in in twitter with the firefox addon Echofon. Echofon adds a tiny status bar icon that notifies you when your friends post tweets. You can also view updates in a timeline and post your own tweets.

So, it’s just simple. Shorten any url with Shorten url ff addon. And share it adding some text with Echofon ff addon.

Enjoy tweeting!

Tweet while blogging

January 2, 2010 |  by Mukesh Chapagain  |  No Comments
9ff85ac6fe6c2cc1aa6ab74a9f731506 Del.icio.us

tweet blogging

Twitterup is a very flexible wordpress plugin which lets you to tweet while you are blogging. You will be tweeting automatically while you are using your wp blog.

Twitterup will post tweet for you when you create a draft, edit draft, publish draft and publish post. You can customize these options as well for tweeting.

The link you provide for your tweet can be shorted by services like tinyurl.com, is.gd, bit.ly or snurl.com

This is a great plugin to connect your wordpress blog/site with your twitter account.

Image Credit: joeteixido via Flickr

How to insert twitter updates in your webpage

November 30, 2009 |  by Rabi Shrestha  |  No Comments
66bfb963a83cd0ff3192fcb670206666 Del.icio.us

Twitter; now-a-days, is the most familiar term in the web. Different kinds of people use ‘twitter’ for different purpose. Some people use to stay connected with friends while other use it to share new ideas and innovations. It is so popular that the news which we cannot get on the television and radios can be seen in the twitter. We also may want to put our twitter updates on our webpage.

For this, Twitter offers an API which you can use to pull information from twitter for your own uses. Even easier, they offer a little Javascript widget which automatically uses this API and returns simple HTML of your recent tweets.

Here are some simple steps for this.
twit
First logon to your Twitter account and go to your homepage. Click the “Goodies” which is at the bottom of your twitter page like given below.

sel_god

Then you will see the following page and click on the “Widgets”

sel_wid

After this you will see the following window. Click on the “My Website”. And then click on the “Profile Widget” to display your personal tweets.

sel myweb

After this you will see a window where you can Customize Your Profile Widget.You can add the username of the account which you want to show tweet in your webpage then set the preference ,appearance and dimension of the profile widget which will appear in page.

wid

You can test the script by clicking the test settings.If you are fine with the testing result then click on the bottom ” Finish & Grab Code” and finally you will see the script,copy that script and paste it in the div of your page where you want to show your twitter updates .
Example:

< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head>
	<title>Twitter Page</title>
 
</head>
 
<body>
< -- script copied from the twitter --->
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 4,
  interval: 6000,
  width: 250,
  height: 300,
  theme: {
    shell: {
      background: '#333333',
      color: '#ffffff'
    },
    tweets: {
      background: '#000000',
      color: '#ffffff',
      links: '#4aed05'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('rabishrestha').start();
</script>
</body>
 
</html>

click here to try it yourself

Note: Make sure that your twitter account has public status. If you want to change your status on twitter account, click on the setting link and unchecked the bottom “protect my tweets”.