How to add widget at foot

April 30, 2009 · Filed Under WordPress Newbie · 1 Comment 

First , find the theme folder and open the file named functions.php

1
2
3
4
5
6
7
   if ( function_exists('register_sidebar') )
        register_sidebar(array(
            'before_widget' => '<li id="%1$s" class="widget %2$s">',
            'after_widget' => '</li>',
            'before_title' => '<h2 class="widgettitle">',
            'after_title' => '</h2>',
        ));

add the below code at this file’s bottom

1
2
3
4
5
6
7
8
9
10
    if ( function_exists('register_sidebar') )
        register_sidebar(array(
            'before_widget' => '<li id="%1$s" class="widget %2$s">',
            'after_widget' => '</li>',
            'before_title' => '<h2 class="widgettitle">',
            'after_title' => '</h2>',
        ));
    register_sidebar(array(
          'name' =>'subwidget',
   ));

then, add the below code at your foot.php

1
2
3
<div class="subwidget">
	<?php dynamic_sidebar(subwidget) ?>
</div>

OK now :-)

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

WordPress Online: get a free wordpress hosting

September 8, 2008 · Filed Under WordPress Newbie · Comment 

Many people asked me how to find a free wordperss hosting. That’s accessiable reason to ask me thie question, in my opinion, if you guy want to install a WordPress blog, do not be the one like the money river running dry :-) just feel free to buy some cheap wordpress hosting, that’s the right way if you really want to install a wordpress blog.

Anyway, if you just  want to test the WordPress or just want to  enjoy the steps to install a WordPress blog. OK, I will find some free wordpress hosting for you guys :-)

I will give a better wordpress blog free hosting, that is http://www.000webhost.com/free-php-hosting.

I heard many people said it was good, but I did not used it at all, I always use some cheap wordpress blog hosting.I think there is no free wordpress hosting forever.

Well, just get a free wordpress hosting and enjoy WordPress.

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

How to install a plugin on WordPress

August 17, 2008 · Filed Under WordPress Newbie · Comment 

This post is for WordPress newbie. If you just started to use WordPress some days ago, and want to install a plugin on your WordPress, just follow this :-)

  1. Download the WordPress plugin, for example, the All in one SEO pack.
  2. decompressing the plugin and upload to the directory  wp-content/plugin
  3. login to the admin board.
  4. click the plugin button.
  5. click the activate button.
  6. your plugin activated now!

Also, normally, the plugin contain a readme.txt, and you can open this file and follow this file, hope this will help for WordPress newbies :-)

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark