2009-05-22 posted in Wordpress and Blogging Tips
This post will be constantly updated when I find new sites that accept theme submission.

After releasing my theme, how do I promote them? One way is to submit them to the sites which accept Wordpress themes. In this post, I show you list of the theme directories and forums that I submit my themes to.

See the full list

2009-05-01 posted in Wordpress and Blogging Tips

Now you can start blogging from anywhere. The new facility of ‘WordPress for iPhone’ allows you to access this advanced blogging tool using your iPhone. WordPress for iPhone assists you in accomplishing a number of tasks. You can write posts, upload photos, edit pages, make a comment on any blog you visit and manage comments on your blog as well.

This move of WordPress offers a great experience for all those who are familiar with the functions of iPhone as well as the WordPress tools.

The ‘WordPress for iPhone’ uses an open source programming so anybody can provide his/her inputs in the development of this plugin. It is launched under GNU, the General Public License. This tool is available in 2.5.1 or higher version. If you are still not aware of this feature, you can check out Wordpress official site for the tutorials and guidelines which are important to learn this advanced tool.

Till now, many people have used this feature and gave a positive feedback. What are you waiting for? Start blogging today with the help of your iPhone.

2009-04-02 posted in Wordpress and Blogging Tips


The link advertising in the footer/sidebar of the Wordpress themes has proven to be an effective way in promoting your sites in two ways. Not only will you get direct traffic from the blogs’ visitors who click on your footer link, it’ll also increase your site’s link popularity, hence your search ranking.

When you sponsor (you buy a footer/sidebar link) a Wordpress theme, the more users download a theme, the more sites will have your links. Currently, there are 3 advertising models available in the market.

Model 1
You sponsor a theme and your links will be permanently placed on the theme. The theme will be promoted via submission to forums and theme directory sites.

Model 2
You sponsor a theme and your links will be permanently placed on the theme. The theme will be promoted via submission to forums, theme directory sites as well as the website of the theme owner.

Model 3
You sponsor a theme and your links will appear on the theme until a certain number of downloads have been fulfilled.

Now the question is: how do you know if your investment returns good results? To answer that question, you need to know 2 things.
1) How many times the theme have been downloaded?
2) How many websites use the themes?

The first question is actually redundant because ultimately, you want to know the answer to the second question, which is the end results! Therefore, when a theme owner tells you how many downloads you’ll get by sponsoring their theme as compared with others, think beyond the number of downloads because the big downloads don’t necessary mean that more sites are using the theme.

You’ll be surprised it is extremely easy to know how many domains use the theme that you sponsor. There is a catch, however, that you need to keep in mind before taking up a sponsorship. Just follow the steps below…

Read on for the full details…

2009-03-26 posted in Wordpress and Blogging Tips

Here is a unique way to increase traffic to your blog. It is called Entrecard. It is defined as an advertising platform for blog owners that are offered for free.

Bloggers and Entrecard users place advertisement of the Entrecard ad on any blog within the Entrecard network that is good for a certain number of days. The Entrecard ad placements on any blog as paid through Entrecard credits of the blogger or website owners who make the ad placement. We can treat this Entrecard credits as some form of a currency used for ad placement within the Entrecard network.

Bloggers place their ads by dropping off their cards at their selected blogs through the Entrecard widget. This Entrecard widget appears on every Entrecard member blog in the network.

Does this new craze deserve the attention that it is getting from a lot of people? Probably, the answer is yes. Entrecard is considered as an effective tool especially for the new and beginning bloggers in generating more traffic to their blogs.

In an apparent sales pitch for Entrecard, the following are declared benefits for those who join the Entrecard network:

  • Another way to Earn Money
    Bloggers who come to drop off cards may click the ads on your blog, which translates to additional money earned. Besides monetizing from the traffic via Entrecard network, Entrecard recently announced a credit-buy-back program where you can sell your credits back to Entrecard.
  • Build your followers
    Entrecard is one great way of bringing more traffic to your blog. Once they visit your blog to drop off their cards, they might see something that might be of interest to them and become a regular follower of your blog.
  • Maximize word-of-mouth Marketing
    You gain warm body endorsers once you get positive feedback from Entrecard members who visit your blog to drop off their cards. It is essential that you keep your blog as interesting as possible to visitors.
  • Improved Google, Alexa and search ranking
    As more and more visit your blog to drop off their cards, this translates to more page views that can boost the ranking of your blog in search engines. This would in turn bring in more targeted traffic to your blog.
  • Increased traffic to your blog will easily attract more direct advertising opportunities. As you experience increased traffic as a direct result of being a member of the Entrecard network, your blog will become more attractive for paying advertisers. This would mean extra dollars to fill your pockets.

With these benefits of Entrecard, it is essential that you are knowledgeable of the nooks and crannies of the network to derive maximum benefit from it. Here are some practical tips to set you off as a new Entrecard member:

Click here to read the Top 10 Tips

2009-03-14 posted in Wordpress and Blogging Tips

WordPress 2.7 introduces a lot of enhancements and one of the major improvements of this new version is the new comment functionality. In WordPress 2.7, comments can be paged, threaded, etc. All of these functionalities are built-in but your theme must support it.

Before we proceed with the topic, it is important that you understand that enhanced comments are optional and its default is in the off mode, even after you have done the changes. In order to change the setting, you have to go to Settings –> Discussion panel to turn the feature on.

Strictly speaking, the word “compatibility” is not an appropriate term. The old themes will still work in the new version. The only issue here is that you will need the theme to support the threading, paging and the javascript enhancements.

This makes it important that your theme’s comments be compatible with WordPress 2.7. In order to unlock the potentials of WordPress 2.7’s comments, a couple of theme modifications are needed.

The first step would be to save the file as legacy.comments.php in the theme directory. After this, you have to create a WordPress 2.7-only comments file and save it as comments.php.

The procedure is to check the version of WordPress that has been installed.

In the theme’s functions.php file, add the following code:

add_filter('comments_template', 'legacy_comments');

function legacy_comments($file) {

if(!function_exists('wp_list_comments')) : // WP 2.7-only check

$file = TEMPLATEPATH . '/legacy.comments.php';

endif;

return $file;

}

?>

This completes the entire procedure.