How to Display Feedburner Subscribers in Plain Text

Feedburner came with feed count banner, but if you think this banner doesn’t match your website design or you want to display Feedburner subscribers in plain text, this is possible!

Copy and paste the following code into your template, for example sidebar.php, replace feedburner-id with your Feedbuner username. This script will grab you the feed count in numbers.

//get cool feedburner count
$whaturl="http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburner-id";

//Initialize the Curl session
$ch = curl_init();

//Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

//Set the URL
curl_setopt($ch, CURLOPT_URL, $whaturl);

//Execute the fetch
$data = curl_exec($ch);

//Close the connection
curl_close($ch);
$xml = new SimpleXMLElement($data);
$fb = $xml->feed->entry['circulation'];
//end get cool feedburner count

Now paste this anywhere you want and it’ll display a Feedburner subscriber count in text.

echo $fb;

Source from Hongkiat

10 My Favorite Windows 7 Desktop Wallpapers

Windows 7 has lots of new features and that’s why I love it a lot than Windows Vista that I used previously. Since I was using Windows 7, I like to find spectacular new wallpapers online because Windows 7 has included a slew of new windows desktop background-wallpapers. The new desktop slide show, which displays a rotating series of pictures makes our desktop never be dull again.

You can visit Personalized Gallery to download free Windows 7 themes and desktop wallpapers. However, I have several pretty Windows wallpapers to share with you, there are my favorite.

15 Recommended Social Bookmarking WordPress Plugins to Share Your Posts

There are lots of social bookmarking wordpress plugin available on the net, but I only recommend 15 social bookmarking wordpress plugin as below. If you want to increase your blog traffic, choose one of the following plugin to install on your blog right now.

1. SocioFluid – Icons for major Social Bookmarking websites, blogger widget and wordpress plugin are available.

sociofluid

2. Sociable – a plugin which adds social media buttons to your posts, and does so easily, and beautifully.

sociable

3. Add to Any – Help your visitors share, save and subscribe to your content with AddToAny widgets.

add to any

4. FreeTellaFriend – is a free service to allow your visitors to share your website with their friends using a click of a button. Once you placed our button on your pages, your visitors can click the button and start sharing. It’s much quicker than the traditional way.

free tell a friend

5. I Love Social Bookmarking – is a simple WordPress plugin that allows your readers to submit your content to social media services via a clutter-free drop-down list of attractive icons.

i love social bookmarking

6. ShareThis – provides a simple way for users to add your post to many social bookmarking sites, or to send a link to your post via email, AIM, Facebook, Twitter and more.

sharethis

7. Social Drop Down – displays several social bookmarking options in a dropdown. Unlike other social bookmarking displays, this does not cause clutter and takes up little screen space.

social drop down

8. Add to This – is for bookmarking your post into stumble,technorati, digg and delicious. You have to do nothing but just activate the plugin. It automatically add the bookmarking options just below to your posts.

add to this

9. Bookmarkify – lets you put social bookmarking links in your posts and other pages. Help your readers promote your blog and watch your traffic grow.

Bookmarkify

10. Social Bookmarks – add a list of XHTML compliant graphic links at the end of your posts that allow your visitors to easily submit them in a number of different social bookmarking sites. It features an AJAX front-end interface.

social bookmark

11. Social Links – is a sidebar widget that displays icon links to your profile pages on other social networking sites. You can see it in action here on the right hand side of my blog.

social links

12. 17fav Bookmark & Share – allows users to add your post to many social bookmarking and share sites.

social bookmark reloaded

13. SociBook – add bookmark links of Del.icio.us, Digg it, Slashdot, RawSugar, Yahoo! MyWeb, and many other links to your wordpress. You can decide which bookmark services you want to show and in what order. You also can define, a own iconset.

socibook

14. The Social Bookmarking RELOADED – for WordPress adds a list of XHTML compliant graphic links at the end of your posts and/or pages that allow your visitors to easily submit them in a number of social bookmarking sites.

social bookmark reloaded

15. KnxDT Bookmarks – add social bookmarks (social bookmarking services) to your posts. Social bookmarks are a feature of Web 2.0 that allow you to send content to be valued and shared by an entire community.

knxdt bookmark

5 Popular WordPress Plugins You Must Install on Your New Blog

There are thousands of wordpress plugins are available for you to download for free, but not all of them are really useful for you or suit to your blog. Anyway, I have 5 popular wordpress plugins that I surely will install when I want to create a new blog. Check them out as below:-

1. Akismet – is a collaborative effort to make comment and trackback spam a non-issue and restore innocence to blogging, so you never have to worry about spam again.

2. Google XML Sitemaps – generates a XML-Sitemap compliant sitemap of your WordPress blog. This format is supported by Ask.com, Google, YAHOO and MSN Search.

3. PageNavi – Adds a more advanced paging navigation your WordPress blog. » Example: Pages (17): [1] 2 3 4 » … Last »

4. Secure and Accessible PHP Contact Form – powerful yet easy-to-install contact form features exceptional accessibility and usability while still providing extensive anti-spam and anti-exploit security features. A marriage of communication and peace-of-mind.

5. Sociable – Automatically add links on your posts, pages and RSS feed to your favorite social bookmarking sites.

Free WordPress Theme – FREEmium

Freemium theme has great design and features than some other premium themes don’t have. You can check out its wonderful features as below:-

  • XHTML 1.0 Transitional
  • jQuery menu
  • quick submitting to web2.0 websites support
  • flickrRSS plugin support
  • threaded comments support
  • feedBurner subscribe via email support
  • a lot of advertising spots (125×125, 120×600, 300×250)
  • 2 widget ready sidebars
  • free for commercial & non-commercial use

This theme definitely free for download, you don’t need to pay any cent then you can enjoy to use this great theme which can compare with some other wordpress themes.

Check out the Demo and Download for free now!!!

How to Avoid Duplicated Comments Submitted

This is one way to combat spam comments if you can avoid duplicated comments are submitted on your posts, you can do some code modification as below in comments.php file. Why people post double comments because sometimes they are not aware that their comment is under moderation mode. Anyway, if you found your theme don’t have this option, then you can open comments.php and do some code modification.

1. Open comments.php and find the following code.

<p>
<input name="submit" type="submit" tabindex="5" value="<?php _e("Say it!"); ?>" />
</p>

2. Replace with

<p>
<blockquote>
Comment moderation is in use. Please do not submit your comment twice — it will appear shortly.
</blockquote>
<input name="submit" type="submit" tabindex="5" value="<?php _e("Say it!"); ?>" />
</p>

How to Make Your Title Tag SEO Friendly

WordPress title tag also plays important role in SEO, it telling the search engine spider what your site covered, and allows your site to be indexed based upon the correct and most relevant keywords. If your site has good seo, then you will have lots of organic traffic from various search engines. So how to make your wordpress title tag SEO friendly?

Open header.php file, find the <title> tag, and replace it by the following code.

<title>
<?php if (is_home () ) {
bloginfo('name');
} elseif ( is_category() ) {
single_cat_title(); echo ‘ – ‘ ; bloginfo('name');
} elseif (is_single() ) {
single_post_title();
} elseif (is_page() ) {
bloginfo(’name’); echo ': '; single_post_title();
} else {
wp_title("",true);
} ?>
</title>

This code will generate title tags according to the following model:

  • Blog homepage -> display blog name.
  • Category page -> display the category name and the blog name.
  • Article page -> display the article title.
  • Static page -> display the blog name, and the page title.
Phone cards for domestic and international use, great rates and excellent connectivity.
International calling card plans offer the ultimate in convenience for phone card users at the lowest cost available.
Australia international phone cards for low-cost international calls from United States to Australia.

travelocity discount air
Wicked Tickets For Sale
hotels.com coupon code 2010 miami
medifast coupon $25