Posts Tagged Wp

Top wordpress plugin for your blog

  • Akismet checks your comments against the Akismet web service to see if they look like spam or not. You need a WordPress.com API key to use it. You can review the spam it catches under “Comments.” This is a default plugin for wp. You just need to activate it.
  • All in One SEO Pack. Out-of-the-box SEO for your Wordpress blog.
  • Contact Form. Just another contact form plugin. Simple but flexible. It’s important to have contact form on your blog.
  • Easy Retweet. Adds a Retweet button to your WordPress posts.
  • Global Translator. Automatically translates a blog in fourteen different languages. This can help you gain more pages indexed at Google.
  • Google XML Sitemaps. This plugin will generate a sitemaps.org compatible sitemap of your WordPress blog which is supported by Ask.com, Google, MSN Search and YAHOO. Configuration Page. After having the sitemap, submit it to Google webmaster.
  • Link Cloaker. Maintains a list of ‘cloaked’ URLs for redirection to outside URLs
  • Subscribe To Comments. Allows readers to receive notifications of new comments that are posted to an entry.
  • Tag content from amazon. Add product based from Amazon on your tag page. Contact me if you want this plugin. Demo here.
  • Twitter Tools. A complete integration between your WordPress blog and Twitter. Bring your tweets into your blog and pass your blog posts to Twitter. Show your tweets in your sidebar, and post tweets from your WordPress admin.
  • Whydowork Adsense. Show adsense on your blog.
  • Wordbook. Cross-post your blog updates to your Facebook account.
  • WordPress Related Posts. Generate a related posts list via tags of WordPress. This helps your blog’s inner linking.
  • WP Auto Tagger. Automatically finds tags based on your post content. This will create more pages for your blog, but you need to have Tag content from amazon plugin that I create.

, , , , , , , , , , , , , , , , , , ,

No Comments

How to use widget multiple times

In Wordpress 2.8, there’s a new widget API. The new widgets API is a class that abstracts away much of the complexity involved in writing a widget, especially multi-widgets.

Basically, you extend WP_Widget with your own class that provides a constructor and three methods — widget(), form(), and update().

  • widget() – outputs the actual content of the widget.
  • update() – processes options to be saved.
  • form() – outputs the options form.

* The WP_Widget source can be viewed here (read the phpdoc for moreinfo on usage): http://core.trac.wordpress.org/browser/trunk/wp-includes/widgets.php
* You can see examples of how to use it here: http://core.trac.wordpress.org/browser/trunk/wp-includes/default-widgets.php

Here’s an execelent example of the widget.

, , , , , , , , ,

No Comments

Cloud Tag at wordpress

The syntax for wordpress cloud tag is :

<?php wp_tag_cloud( $args ); ?>
You can pass the following arguments to the function:
  • ’smallest’
  • ‘largest’
  • ‘unit’
  • ‘number’
  • ‘orderby’
The sample code are:
<?php wp_tag_cloud(’smallest=8&largest=22′); ?>
<?php wp_tag_cloud(’smallest=8&largest=22&number=40′); ?>

, , , , , , , , ,

No Comments