How to add widget at foot
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 ![]()
WordPress Online: get a free wordpress hosting
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.
How to install a plugin on WordPress
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
- Download the WordPress plugin, for example, the All in one SEO pack.
- decompressing the plugin and upload to the directory wp-content/plugin
- login to the admin board.
- click the plugin button.
- click the activate button.
- 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














