Use WordPress to Setup Multi Blogs Under One Mysql Database

We can use Mu to setup multi wordpress blogs. If you do not want to do so, you can use wordpress to setup multiy blogs also.

 For example, we want to set up two blogs: www.glassespeople.com ,and http://blog.glassespeople.com, we only add the following code at wp-config.php: Continue reading “Use WordPress to Setup Multi Blogs Under One Mysql Database”

How to control WordPress 3.0 tag cloud font size?

Go to wp-includes, use dreamweaver to open category-template.php, search the following code:

function wp_tag_cloud( $args = ” ) {
 $defaults = array(
  ’smallest’ => 8, ‘largest’ => 22, ‘unit’ => ‘pt’, ‘number’ => 45,

then change smallest font size and largest size as you like, say:

 function wp_tag_cloud( $args = ” ) {
 $defaults = array(
  ’smallest’ => 10, ‘largest’ => 10, ‘unit’ => ‘pt’, ‘number’ => 45,

 Hope the above code is useful to you!