Why You Should Learn Wordpress blogging

November 19, 2008

If you start your blog on the wrong platform, you are asking for trouble. Think about this: if your start your blog the wrong way, you could lose all of your search rankings and many of your readers when you try to change gears. Don’t let this happen to you! Start the right way, right from the start.

So “Which blogging platform is best?” I hear you asking. The answer is simple. After years of blogging and using platforms inside and out, it all comes down to WordPress being the hands-down winner. Here are a few reasons why. WordPress has an extensive theme directory. Themes are used to change the look and feel of your blog. You don’t need to know how to design or code a thing. There are thousands of free, premium, and specialty themes to choose from. Read more

Reason Why Blogger Using Wordpress

August 24, 2008

New blog writers everywhere are faced with a serious dilemma when they first reach the Internet and must decide which blogging platform is best for their new website. There are actually dozens of options on the market, ranging from the basic blog settings of the social networks to the self-hosted open sources software solutions.

However, for most new bloggers and those who don’t want to pay for their blog, the choice boils down to one of two websites: Blogger and Wordpress. These two services have become synonymous in recent years with the blogging phenomenon, making up a massive percentage of the Internet’s most popular blogs. For that reason, there has been a bit of discussion over which service is better.

Provided here is a solid answer to that question once and for all, 7 reasons why Blogger is in fact better than Wordpress. These comparisons relate to the free accounts available from both Blogger and Wordpress.

Integrated Login with Your Google Account
With the ability to easily connect all of your Google accounts, this is a big plus for Blogger. Many of the most useful features for a website are offered by Google, including AdSense, AdWords, and Webmaster tools for Google indexing. Instead of adding code into your templates, something that can quickly become confusing and result in broken websites, Blogger allows you to simply click a button and integrate AdSense or banners into your site.

This allows you to use the same login information for all Google services and that sets Blogger a few steps ahead. Wordpress is an open sources solution, meaning that all extra services must be manually integrated into your blog after you have signed up for your account. Read more

Did You Know Wordpress is a Free Traffic Machine?

July 3, 2008

Wordpress is an unbelievably powerful tool for the online business owner. If you already have a site, all you need to do is add a Wordpress blog to a directory on your domain.

For instance, if your site is at www.yoursite.com, you would simply install Wordpress into a directory like /blog/. The Wordpress blog will then be found at www.yoursite.com/blog/. You can use any directory name you want; ‘news’ and ‘updates’ are two other good choices.

Most hosts come with a cpanel account with fantistico. You can actually install Wordpress through fantistico with just a couple of clicks. It takes less than 5 minutes. The Wordpress backend is simple to navigate, so once you have it set up, it won’t take you long at all to become familiar with it. You’ll be able to make your first post within minutes. Read more

reasons for choosing WordPress for a blog

July 3, 2008

If you are thinking to start your own blog then WordPress is the right tool to go for. My friends have been using it for long time and some of them have built impressive blog site using WordPress. Myself I like it, not it is free but it is simple, easy, light yet powerful. It has features of most of modern CMS for blogging and it is most widely used over the Internet.

Let me highlight some of the features of Word Press.

1. Easy to Install

One of the reason people run away from using Content Management System(CMS) because they are hard to install and configure. Wordpress is very easy while installing. Just need three click and you are ready with your blog. If you dont have your own domain name and web space, you can register free on wordress.org site and start blogging.

2. Nice Interface

Interface is another big factor which determines whether CMS will continue for long or not and will be liked by others. Interface help users to learn and understand particular software quickly. Wordress has nice blue Default interface. Administrative interface is blue with meaningful links. Links are placed just at right places so that you dont have to search around. You can spell check your post, edit it easily with rich text based editor. Read more

50 best plugin for wordpress

July 2, 2008

The wordpress plugins are arranged broadly by category of usage. As
far as I know, all these plugins are compatible with the latest
WordPress version. Please feel free to suggest great plugins in
comments that I can add to this list.

Manage WordPress Comments

  • Subscribe To Comments - Allows readers to recieve notifications of new comments that are posted to an entry.
  • WP AJAX Edit Comments - Allows users and admins to edit comments on a post inline using AJAX.
  • Close Old Posts - Closes comments on old posts without any DB queries.
  • WP Grins - allows you to put clickable smilies on your post and comments forms.
  • WordPress Paged Comments - allows comment paging. Useful for those very popular blog entries receiving many comments.
  • Live Comment Preview - the simplest way to get live comment previews on your site.
  • Show Top Commentators - Encourage more discussion from your readers, by displaying their
    names and number of comments they have made recently to your sidebar.
  • MyAvatars - shows MyBlogLog’s alvatar in your comments
  • Comment Relish - Sends a thank you e-mail to your first time commentators.
  • Favatars - displays the favicon associated with the commenter’s website.
  • Brian’s Threaded Comments - adds a ‘Reply to this comment’ link to every comment. Makes it easy for people to reply to comments and discuss better. Read more

    Wordpress Plugin Update One-Click Automatic

    June 29, 2008

    You always wanted to upgrade wordpress plugin automatically. Wordpress 2.5 has brought along its share of goodies which let you upgrade plugins in one click. Now updating plugins need not be an arduous task as before and new wordpress bloggers will find this particularly easy.

    Earlier upgrading plugins was tedious. Once you realized a new version was available, it required deactivating the plugin, downloading, unzipping and reading the upgrade instructions (in case some new tricky modification required), then uploading the plugins php files to the wordpress plugin directory and reactivating the plugin and hopefully all will work out well.
    Fast and Quick Wordpress Plugin Upgrades

    Wordpress 2.5 introduced the much requested feature for easy one click plugin upgrades. I received a notice that my Google XML Sitemaps Plugin needed an update. This time it had an “Upgrade Automatically” link beside it

    I simply clicked the “Upgrade Automatically” link and in a few seconds it was all done…Wordpress Plugin Update Read more

    How to Create Multiple Dynamic Sidebars for Wordpress Widgets

    June 28, 2008

    In the last tutorial, you learnt how to widgetize your wordpress theme to support wordpress widgets. Now this tutorial explains how to create multiple dynamic sidebars to add various combinations of widgets to customize your wordpress theme even more. I suggest you read how to Widget-Enable Wordpress Themes in 3 Easy Steps before reading further as examples will be quoted in the same context.

    Edit Functions.php for Multiple Dynamic Sidebars

    The functions.php code which helped to widgetize your wordpress theme and support a single dynamic sidebar, now needs to be edited (using any text editor like Notepad) to support multiple sidebars. You remember we had modified the default function.php from

    <?php
    if ( function_exists('register_sidebar') )
    register_sidebar();
    ?>

    to the new code below to support our customized template with h4 subtitles and non-default unordered lists in the sidebar. REMEMBER you need to edit functions.php to match your wordpress theme or it will not work.

    <?php
    if ( function_exists('register_sidebar') )
    register_sidebar(array(
    'before_widget' => '',
    'after_widget' => '',
    'before_title' => '<h4>',
    'after_title' => '</h4>',
    ));
    ?>

    To support multiple sidebars, I simply need to specify that multiple sidebars be used and name them as I like. In our case I use Sidebar1, Sidebar2 etc and as many as you like. The code now looks like this -

    <?php
    if ( function_exists('register_sidebar') )
    register_sidebar(array('name'=>'sidebar1',
    'before_widget' => '',
    'after_widget' => '',
    'before_title' => '<h4>',
    'after_title' => '</h4>',
    ));
    register_sidebar(array('name'=>'sidebar2',
    'before_widget' => '',
    'after_widget' => '',
    'before_title' => '<h4>',
    'after_title' => '</h4>',
    ));
    ?>

    I personally have extended this capacity to 6 dynamic sidebars on this blog. Here is how it looks like on top of admin panel.

    Read more